Assume you had a point with the (x,y) coordinates of (4,8), you could calculate the angle in radians between that point and the positive X axis as follows:
Math.atan2(8, 4);
The Math.atan2()
method returns the arctangent of the quotient of its arguments, as a numeric value between PI and -PI radians.
The number returned represents the counterclockwise angle in radians (not degrees) between the positive X axis and the point (x, y).
Note: With atan2(), the y coordinate is passed as the first argument and the x coordinate is passed as the second argument.
Math.atan2(
y,
x)
Parameter | Description |
y | Required. The y coordinate. |
x | Required. The x coordinate. |
Type | Description |
Number | PI to -PI.NaN if the values are empty or not numeric. |
Math.atan2()
is an ECMAScript1 (ES1) feature.
ES1 (JavaScript 1997) is fully supported in all browsers:
Chrome | Edge | Firefox | Safari | Opera | IE |
Yes | Yes | Yes | Yes | Yes | Yes |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!