(( <mod> ))<round( <abs( ive got no idea what these do so please help scratch wiki isn't very clear
Offline
Abs=absolute value operator (look it up)
Round=Rounds a decimal to the nearest whole number
Mod=Modulo operator (look it up)
Offline
[blocks](( <mod> ))[/blocks] returns the remainder you get when you divide the first number by the second number.
[blocks]<round( [/blocks] returns the number rounded up.
[blocks]<abs( [/blocks] returns the absolute value of the number. This means that if the number is negative, it returns the positive form of the number, and just returns the number if it's positive.
Offline
bobbydooda wrote:
[blocks](( <mod> ))<round( <abs([/blocks] ive got no idea what these do so please help scratch wiki isn't very clear
If you're using the forum blocks it's a good idea to put [blocks][/blocks] around them to stop the rest of your post going bold.
Last edited by TheSuccessor (2011-03-23 16:12:43)
Offline
Funky7774 wrote:
[block]<abs( )[/block] I have no clue either.
abs() returns the absolute value of a number. It's essentially the number's distance from 0; abs(17) is 17, and abs(-17) is also 17.
Offline