Game Maths Flashcards
A radian is equivalent to approx how many degrees?
57.2958 degrees
How many radians in a circle?
6.2832
In pi - what does 360 degrees equal?
2 PI
in pi - what does 180 degrees equal?
PI
In pi - what does 90 degrees equal?
PI / 2
What is a JavaScript formula for converting degrees to radians?
radians = degrees * Math.PI / 180;
What is a JavaScript formula for converting radians to degrees?
degrees = radians * 180 / Math.PI;
The opposite side to an angle…
does not touch the angle
The adjacent side to an angle…
touches the angle (and is not the hypotenuse)
The sine of an angle is…
the ratio of the lengths of the side opposite the angle and the hypotenuse
opposite side / hypotenuse
When you use Math.sin, the result may not be what you expect - what step do you have to make to make this make sense?
convert the angle to radians
What do you need to remember about angles in JavaScript?
The coordinate system is reversed due to the origin being in the top / left corner. So the positive direction is clockwise, rather than counter-clockwise as in standard maths.
0 Degrees is still in the positive X direction though.
What is the cosine of an angle defined as?
Ratio of the adjacent leg of an angle to the Hypotenuse
adjacent leg / hypotenuse
You need to find out the cosine of an angle 30 degrees - how would you do that?
Math.cos(30 * Math.PI / 180)
NOTE: We have to convert to radians first!
You need to find out the sine of an angle 30 degrees, how would you do that?
Math.sin(30 * Math.PI / 180)
NOTE: We have to convert to radians first!
In a triangle, the cosine of one angle is the…
sine of the other angle
The tangent of an angle is the ratio of…
the opposite leg and the adjacent leg
opposite leg / adjacent leg
What does Math.asin do?
It’s the arcsine - it does the reverse of sin.
Pass in an ratio and it will give you the angle.
How would you determine the angle given an opposite leg and a hypotenuse of 1 and 2?
Math.asin(1 / 2) * 180 / Math.PI; Gives 30 (or 29.999);
How would you determine the angle given an adjacent leg and hypotenuse of 1.73 and 2?
Math.acos(1.73 / 2) * 180 / Math.PI; Gives 30 (or 29.999)
What does Math.atan do?
It’s the arctangent - it does the reverse of tangent
Pass in the ratio and it will give you the angle
How would you determine the angle given the opposite leg and adjacent leg of -1 and 1.73?
Math.atan(-1 / 1.73) * 180 / Math.PI
What is the downside to using Math.atan?
If you ratios of -1 and -2, or 1 and 2 - they will give you the same ratio 0.5. So it’s not possible to determine which triangle the result will be refering too.
What is Math.atan2(y, x)?
It’s like Math.atan - however, it takes the measurement of the opposite side, and the adjacent side as separate parameters.
What is the sine of 0?
0
What does a sign wave represent?
The values of sine for all the angles from 0 to 360
What are the two main coordinate systems?
Polar and Cartesian
How would you find the polar coordinates given an x and y coordinate, around a central position?
var originx = 100; var originy = 100; var positionx = 150; var positiony = 150; radians = Math.atan2(positiony - originy, positionx - originx);
What do you have to keep in mind with results from atan2?
The range is between [-π, π] - which means you don’t know the 360 value. To change this, (assuming radians)…
if (angle