Files
Digpkg/math/docs/trig/tan.md

14 lines
250 B
Markdown
Raw Normal View History

2026-01-23 16:47:56 +11:00
# math_Tan
Get the tangent of a certain amount of radians.
## Arguments
- x (double): Number (in radians)
## Returns
result (double): The tangent of the number in radians
## Example
```python
call !math_Tan 3.14159 &result
println $result # 0
```