✨[FEATURE] - clamp()
should have the option for 1 parameter
#169
Labels
enhancement
New feature or request
clamp()
should have the option for 1 parameter
#169
to use
clamp
you need to give it an input, a max, and a min. If only a max is given,clamp
should assume that the min is negative max. soclamp(input, 127);
is the same asclamp(input, 127, -127);
The text was updated successfully, but these errors were encountered: