Euler's constant
PI constant
PI * 2 constant
PI / 2 constant
Returns the angle of a height-slope
Returns the length of the hypotenuse of a right-angle triangle with the given side lengths. Does not overflow or underflow as fast as SquareRoot(x^2 + y^2) does.
Returns the largest value in the set provided as arguments. Example: max(6, 4, -12) // Returns 6.
Returns the largest value in the set provided as arguments. Example: max(6.5, 4.5, -12.5) // Returns 6.5.
Returns the smallest value in the set provided as arguments. Example: min(6, 4, -12) // Returns -12.
Returns the smallest value in the set provided as arguments. Example: min(6.5, 4.5, -12.5) // Returns -12,5.