Math
The following functions allow you to preform math functions on values in expression bindings.
📄️ abs
Returns the absolute value of number.
📄️ acos
Returns the arc cosine of number
📄️ asin
Returns the arc sine of number
📄️ atan
Returns the arc tangent of number
📄️ ceil
Returns the smallest floating point value that is greater than or equal to the argument and is equal to a mathematical integer.
📄️ cos
Returns the trigonometric cosine of number
📄️ exp
Returns Euler's number e raised to the power of the argument number, or enumber
📄️ floor
Returns the largest floating point value that is less than or equal to the argument and is equal to a mathematical integer.
📄️ log
Returns the natural logarithm (base e) of a number.
📄️ log10
Returns the logarithm (base 10) of a number.
📄️ pow
Returns a number raised to a power.
📄️ round
Rounds a floating point number.
📄️ sin
Returns the trigonometric sine of a number
📄️ sqrt
Returns the square root of the argument number
📄️ tan
Returns the trigonometric tangent of a number
📄️ todegrees
Converts an angle measured in radians to an equivalent angle measured in degrees
📄️ toradians
Converts an angle measured in degrees to an equivalent angle measured in radians