Menu

Math

Round

round( value, precision )

Round a value given the precicion.

Round up

roundup( value )

Round a value up to the nearest integer.

Round down

rounddown( value )

Round a value down to the nearest integer.

Absolute

abs( value )

Get the absolute value.

Square Root

sqrt( value )

Get the square root of a value.

Sum

sum( [ value, ... ] )

Get the sum of values.

Minimum

min( [ value, ... ] )

Get the lowest value.

Maximum

max( [ value, ... ] )

Get the highest value.

Average

avg( [ value, ... ] )

Get the average value.

Pi

pi( )

Get the value of Pi.

Sine

sin( value )

Get the Sine of value.

Cosine

cos( value )

Get the Cosine of value.

Tangents

tan( value )

Get the Tangents of value.

Inverse Sine

asin( value )

Get the inverse Sine of value.

Inverse Cosine

acos( value )

Get the inverse Cosine of value.

Inverse Tangents

atan( value )

Get the inverse Tangents of value.

Degrees to Radians

deg_to_rad( value )

Convert degrees into radians.

Radians to Degrees

rad_to_deg( value )

Convert radians into degrees.

Menu