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

14 lines
244 B
Markdown
Raw Normal View History

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