round( value, precision )
Round a value given the precicion.
roundup( value )
Round a value up to the nearest integer.
rounddown( value )
Round a value down to the nearest integer.
abs( value )
Get the absolute value.
sqrt( value )
Get the square root of a value.
sum( [ value, ... ] )
Get the sum of values.
min( [ value, ... ] )
Get the lowest value.
max( [ value, ... ] )
Get the highest value.
avg( [ value, ... ] )
Get the average value.
pi( )
Get the value of Pi.
sin( value )
Get the Sine of value.
cos( value )
Get the Cosine of value.
tan( value )
Get the Tangents of value.
asin( value )
Get the inverse Sine of value.
acos( value )
Get the inverse Cosine of value.
atan( value )
Get the inverse Tangents of value.
deg_to_rad( value )
Convert degrees into radians.
rad_to_deg( value )
Convert radians into degrees.