• 🏆 Texturing Contest #33 is OPEN! Contestants must re-texture a SD unit model found in-game (Warcraft 3 Classic), recreating the unit into a peaceful NPC version. 🔗Click here to enter!
  • It's time for the first HD Modeling Contest of 2024. Join the theme discussion for Hive's HD Modeling Contest #6! Click here to post your idea!

[General] Math - Min/ Math - Max?

Status
Not open for further replies.
Level 26
Joined
Aug 18, 2009
Messages
4,097
min(2, 5) = 2
min(2, -4) = -4

max(3, 7) = 7
max(10, 0) = 10

It returns the min/max of a pair of values.

min(upperBound, max(lowerBound, value))
respectively
max(upperBound, min(lowerBound, value))

limits a value to between a lower- and upperBound (it does not change the variable, you do not pass references in wc3, but returns a new val).
 
Status
Not open for further replies.
Top