• 🏆 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!

[Snippet] Bit Manip

Level 4
Joined
Jul 4, 2012
Messages
78
how does num - num/ 2*2 operated? Does it turn to num - ((num / 2) * 2))
I was just asking.

Yes, multiply/divide take precedence over add/subtract and are scripted to process first, left to right.

5 - 5/3*3 is the same as 5-((5/3)*3), the parenthesis are just redundant for the compiler.

whats the usage of deviding by a number and then multiplying by the same? i mean x/2*2 = x
 
Top