10 lines
131 B
Plaintext
10 lines
131 B
Plaintext
|
@lazyglobal off.
|
||
|
|
||
|
function Bound {
|
||
|
parameter minB.
|
||
|
parameter maxB.
|
||
|
parameter value.
|
||
|
|
||
|
return min(max(value, minB), maxB).
|
||
|
}
|