Reference
Arithmetic
Absolute
| Input | A number. |
| Output | The absolute value of the number. |
Negative
| Input | A number. |
| Output | The negative value of the number. |
Increment
| Input | A number. |
| Output | The number incremented by one. |
Decrement
| Input | A number. |
| Output | The number decremented by one. |
Add
| Input | Two numbers. |
| Output | The sum of the numbers. |
Sum
| Input | Two numbers. |
| Output | The sum of the numbers. |
Subtract
| Input | Two numbers. |
| Output | The difference of the numbers. |
Multiply
| Input | Two numbers. |
| Output | The product of the numbers. |
Divide
| Input | Two numbers. |
| Output | The division of the numbers. |
Modulo
| Input | Two numbers. |
| Output | The remainder of the division of the numbers. |
Power
| Input | Two numbers. |
| Output | The first number raised to the power of the second number. |
Square root
| Input | A number. |
| Output | The square root of the number. |
Minimum
| Input | Two numbers. |
| Output | The smallest of the numbers. |
Maximum
| Input | Two numbers. |
| Output | The largest of the numbers. |
Round
| Input | A number. |
| Output | The number rounded to the nearest integer. |
Floor
| Input | A number. |
| Output | The largest integer less than or equal to the number. |
Ceiling
| Input | A number. |
| Output | The smallest integer greater than or equal to the number. |
Sine
| Input | A number (in radians). |
| Output | The sine of the number. |
Cosine
| Input | A number (in radians). |
| Output | The cosine of the number. |
Tangent
| Input | A number (in radians). |
| Output | The tangent of the number. |
Logarithm
| Input | A number. |
| Output | The natural logarithm of the number. |
Is negative
| Input | A number. |
| Output | True if the number is negative. False otherwise. |
Is positive
| Input | A number. |
| Output | True if the number is positive. False otherwise. |
Is zero
| Input | A number. |
| Output | True if the number is zero. False otherwise. |
Is even
| Input | A number. |
| Output | True if the number is even. False otherwise. |
Is odd
| Input | A number. |
| Output | True if the number is odd. False otherwise. |
As radians
| Input | An angle in degrees. |
| Output | The angle converted to radians. |
As degrees
| Input | An angle in radians. |
| Output | The angle converted to degrees. |
Infinity
| Output | Positive infinity. |
Fractional part
| Input | A number. |
| Output | The fractional part of the number. |
Clamp
| Inputs | Three numbers. |
| Output | The first number clamped to be in the range of the second and third number. |
Sign of a number
| Input | A number. |
| Output | 1 if the number is positive. -1 if the number is negative. 0 if the number is zero. |
Random integer
| Inputs | Two numbers. |
| Output | A random integer between the two numbers (inclusive). |
Random decimal
| Output | A random decimal number between 0 and 1. |
Compare
| Inputs | Two numbers. |
| Output | 1 if the first number is bigger than the second. -1 if it is the smaller. 0 if they are equal. |