Math.fromPolar()¶
Description¶
Converts a point from polar coordinates (radius, angle)
to Cartesian coordinates (x, y)
.
Syntax¶
Parameters¶
Parameter | Type | Description |
---|---|---|
radius |
Number |
Radius. |
angle |
Number |
Angle in degrees. |
Return value¶
Type | Description |
---|---|
point |
A point in Cartesian coordinates. |