Skip to content

Math

math

ABS

Calculates the absolute value of the input number.

abs

ACOS

Calculates the angle whose cosine is the input number. Domain of input for a real result is -1 to 1. Output range is 0 to Π (0 to 180°).

acos

ASIN

Calculates the angle whose sine is the input number. Domain of input for a real result is -1 to 1. Output range is -Π/2 to Π/2 (-90° to 90°).

asin

ATAN

Calculates the angle whose tangent is the input number. Can be used with all real numbers. Output range is -Π/2 to Π/2 (-90° to 90°).

atan

CEILING

Calculates the smallest integer greater to or equal to the input number.

ceiling

CLAMP

Clamps the input number between a minimum and maximum value.

clamp

COS

Calculates the cosine of the input angle (in radians).

cos

EXP

Calculates e raised to the input power.

exp

FLOOR

Calculates the largest integer smaller to or equal to the input number.

floor

LERP

Performs a linear interpolation between two values. The input value T ranges from 0 to 1.

lerp

LOG

Calculates the base e logarithm of the input value.

log

LOG10

Calculates the base 10 logarithm of the input value.

log10

MAX

Calculates the larger of two input numbers.

max

MIN

Calculates the smaller of two input numbers.

min

ROUND

Rounds the input value to the nearest integer.

round

SIGN

Calculates the sign of the input number.

sign

SIN

Calculates the sine of the input angle (in radians).

sin

SQRT

Calculates the square root of the input number

sqrt

TAN

Calculates the tangent of the input angle (in radians).

tan

TODEGREES

Converts the input value from radians to degrees.

todegrees

TORADIANS

Converts the input value from degrees to radians.

toradians