You may recall from your high schoolhouse Trigonometry course of teaching (don't worry if not, it was a long fourth dimension agone for me too!) those 2 periodic functions, sine (pronounced "sign") in addition to cosine ("co-sign"). They're essentially the same part in addition to you lot could map ane to the other amongst a slight shift. Cosine has roughly unique applications of its own, such equally determining calorie-free intensity based on viewing angle, but the demos below volition focus primarily on sine waves.
Notice a few interesting properties from the graph above. One is that a sine moving ridge repeats itself every 2π (π ≈ 3.14159) or 360 degrees along the X-axis. Another is that it oscillates betwixt the Y values -1 in addition to 1. We write the part y = sin(x) to betoken the Y value equally a part of X; encounter from the graph higher upward that Y = 0 when X is whatever multiple of π in addition to Y is either 1 or -1 (the peaks in addition to valleys) when X is an strange multiple of π/2.
Point Light Demo - Download Program!

Before learning this elegant method, my approach to animating an object that sways dorsum in addition to forth, or moves repeatedly upward in addition to downward along a pole, was to utilization code similar this inwards my update loop:
static bool moveUp = true; if (moveUp) { if (shipPos.y < 100) shipPos.y += value; else moveUp = false; } else { if (shipPos.y > -100) shipPos.y -= value; else moveUp = true; }
Ocean Waves Demo - Download Program!

As amongst the Point Light demo, you lot volition quest to accept DirectX (from Windows Update) installed inwards club to run the program.
These are exactly a span applications of the sine function. Because of its periodic repetition, it could accept many potential uses; roughly beau GCG forum members cited their implementations of a 3D carousel in addition to a wavy spaceship flying path equally additional examples.
I promise you lot relish the demo programs of this post, though I acknowledge I nonetheless quest to larn improve methods of input handling. Part 2 volition depict moving ridge alterations, based on the Ocean Waves demo, inwards greater detail. Until then, experience gratis to permit us know: What's the coolest matter you've done amongst sine/cosine waves?
0 Response to "Sine Linguistic Communication Lesson, Purpose 1"
Post a Comment