14 lines
249 B
Markdown
14 lines
249 B
Markdown
|
|
# math_Cos
|
||
|
|
Get the cosine of a certain amount of radians.
|
||
|
|
|
||
|
|
## Arguments
|
||
|
|
- x (double): Number (in radians)
|
||
|
|
|
||
|
|
## Returns
|
||
|
|
result (double): The cosine of the number in radians
|
||
|
|
|
||
|
|
## Example
|
||
|
|
```python
|
||
|
|
call !math_Cos 3.14159 &result
|
||
|
|
println $result # -1
|
||
|
|
```
|