abs() // Absolute value (magnitude)
acos() // Arc cosine (inverse cosine)
asin() // Arc sine (inverse sine)
atan() // Arc tangent (inverse tangent)
atan2() // Arc tangent of two variables (y, x)
tan() // Tangent (opposite/adjacent)
ceil() // Smallest integer value not less than the argument (rounds up)
clamp() // Clamps a value to a specified range (min, max)
cos() // Cosine (adjacent/hypotenuse)
cosh() // Hyperbolic cosine (e^x + e^-x)/2
cross() // Cross product (vector product)
sin() // Sine (opposite/hypotenuse)
degrees() // Converts radians to degrees (x * 180/pi)
distance() // Distance between two points (magnitude of the difference)
dot() // Dot product (scalar product)
exp() // Exponential (base e)
exp2() // Base 2 exponential (2^x)
fit() // Fits a value from one range to another (linear interpolation)
floor() // Largest integer value not greater than the argument (rounds down)
length() // Length of a vector (magnitude)
log() // Natural logarithm (base e)
max() // Maximum value (x, y)
min() // Minimum value (x, y)
normalize() // Normalizes a vector (length = 1)
radians() // Converts degrees to radians (x * pi/180)
round() // Rounds to the nearest integer (0.5 rounds up)
sign() // Sign of a number (-1, 0, 1)
sinh() // Hyperbolic sine (e^x - e^-x)/2
sqrt() // Square root (x^0.5)
step() // Step function (returns 0 if x < edge, 1 if x >= edge)