Specifications

Returns the arccosine of the given number in radians
between 0 and Math.PI. If the number is out of range,
returns NaN.
acos( number : Number ) : Number
Returns the arcsine of the given number in radians
between -Math.PI/2 and Math.PI/2. If the number is out
of range, returns NaN.
asin( number : Number ) : Number
Returns the arctangent of the given number in radians
between -Math.PI/2 and Math.PI/2. If the number is out
of range, returns NaN.
atan( number : Number ) : Number
Returns the counter-clockwise angle in radians between
the positive x-axis and the point at (xCoord, yCoord). The
value returned is always between -Math.PI and Math.PI.
function polar( x, y )
atan2( yCoord : Number, xCoord :
Number ) : Number
{
return Math.atan2( y, x );
}
If the number is an integer, it returns the number. If the
number is a floating point value, it returns the smallest
integer greater than the number.
var x = 913.41;
ceil( number : Number ) : Number
x = Math.ceil( x ); // x == 914
var y = -33.97;
y = Math.ceil( y ); // y == -33
Returns the cosine of the given number in radians. The
value will be in the range -1..1.
cos( number : Number ) : Number
Returns Math.E raised to the power of the given number.
exp( number : Number ) : Number
If the number is an integer, it returns the number. If the
number is a floating point value, it returns the greatest
integer less than the number.
floor( number : Number ) : Number
If the number is > 0, it returns the natural logarithm of
the given number. If the number is 0, it returns Infinity.
If the number is < 0, it returns NaN.
log( number : Number ) : Number
Returns the largest of number1 and number2.
max( number1 : Number, number2
: Number ) : Number
Returns the smallest of number1 and number2.
min( number1 : Number, number2
: Number ) : Number
Returns the value of the number raised to the power.
pow( number : Number, power :
Number ) : Number
387
Enfocus Switch 10