We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f624792 + 688952d commit 6cb2612Copy full SHA for 6cb2612
resources/function_help/clamp
@@ -14,6 +14,6 @@ Restricts an input value to a specified range.
14
<!-- Show example of function.-->
15
clamp(1,5,10) → 5 (<i>input</i> is between 1 and 10 so is returned unchanged)<br>
16
clamp(1,0,10) → 1 (<i>input</i> is less than minimum value of 1, so function returns 1)<br>
17
- clamp(1,11,10) → 10 (<i>input</i> is greater than maximum value of 10, so function returns 11)<br>
+ clamp(1,11,10) → 10 (<i>input</i> is greater than maximum value of 10, so function returns 10)<br>
18
19
0 commit comments