ATAN2
Returns the arctangent of the x,y coordinates, in radians. The angle is measured counter-clockwise from the positive x-axis.
| Category | Trig |
| Syntax | ATAN2(x_num, y_num) |
Parameters
| Parameter | Required | Description |
|---|---|---|
x_num | Required | The x-coordinate. |
y_num | Required | The y-coordinate. |
Example
ATAN2(1, 1) // → 0.7854… (π/4 rad)
Auto-generated from the EngCanvas function registry.