atan(x: number) → f64
Category: [math](builtinsmath)_
Arctangent, in radians.
| Parameter | Type | Description | Remarks |
|---|---|---|---|
| x | number | The input value (any number, widened to f64). | — |
| returns | f64 | The result, as an f64. | — |
wcl
atan(0.0) // arctangent of 0 → 0.0atan(x: number) → f64
Category: [math](builtinsmath)_
Arctangent, in radians.
| Parameter | Type | Description | Remarks |
|---|---|---|---|
| x | number | The input value (any number, widened to f64). | — |
| returns | f64 | The result, as an f64. | — |
atan(0.0) // arctangent of 0 → 0.0