Module that provides math-related functions.
cos ( n : Number )
Cosine of n.
random ( )
Returns a random number between 0 and 1.
randInt ( low : Number, high : Number )
Returns a random integer in the range low…high. The range is inclusive at both ends, so this is possible:
$ Math.randInt(0, 3) ⇒ 3
randNum ( low : Number, high : Number )
Returns a random floating-point number in the range low…high.
sin ( n : Number )
Sine of n.
tan ( n : Number )
Tangent of n.