loom
1import math : math
2
3print math.clampInt(1, 0, 2)
4// 1
5print math.clampInt(-3, 5, 12)
6// 5
7print math.clampInt(-6, 90, 43)
8// 43
9
10print math.clampReal(3.0, -1.0, 4.6)
11// 3.0
12print math.clampReal(-3.2, -1, -0.5)
13// -1
14print math.clampReal(-6, 90, -3)
15// -3
16