package wip

This commit is contained in:
2026-01-23 16:47:56 +11:00
parent f6bfa6b8fd
commit 904ef85f54
18 changed files with 259 additions and 6 deletions

16
math/docs/clamp.md Normal file
View File

@@ -0,0 +1,16 @@
# math_Clamp
Clamps a number between a minimum and maximum value.
## Arguments
- number (double): The number to be clamped
- min (double): Minimum value
- max (double): Maximum value
## Returns
result (double): The number after being clamped
## Example
```python
call !math_Clamp 1.5 0.0 1.0 &result
println $result # 1.0
```