Understood it. I made this thread, because I wanted to understand if I can use these natives as one-side clamp() function. The answer is yes. Thanks for the info!
What can I explain shortly:
You can use max() to make a border, which a value can't go lower. Like if you want your value to not get under the zero, you make it like:
PHP Code:
max(MyValue, 0)
The opposite applies to min(). Your value won't go above the value in this native:
PHP Code:
min(MyValue, 0)
In this way, your value will never be possitive.
Thanks for the info!
__________________