Value | Meaning |
---|---|
funcNormalize0 | Normalizes the vector so that it has a length of 1 but points in the same direction. |
funcSaturate1 | Clamps the value between 0.0 and 1.0. |
funcNegate2 | Returns the opposite value of the parameter. |
funcReciprocal3 | Returns 1/vector. |
funcRgb2hsv4 | Converts RGB vector to HSV equivalent. |
funcHsv2rgb5 | Converts HSV vector to RGB equivalent. |
funcAbs6 | Returns the absolute value of the parameter. |
funcAcos7 | Returns the arc-cosine of the parameter. |
funcAcosh8 | Returns the inverse hyperbolic cosine of the parameter. |
funcAsin9 | Returns the arc-sine of the parameter. |
funcAsinh10 | Returns the inverse hyperbolic sine of the parameter. |
funcAtan11 | Returns the arc-tangent of the parameter. |
funcAtanh12 | Returns the inverse hyperbolic tangent of the parameter. |
funcCeil13 | Finds the nearest integer that is greater than or equal to the parameter. |
funcCos14 | Returns the cosine of the parameter. |
funcCosh15 | Returns the hyperbolic cosine of the parameter. |
funcDegrees16 | Converts a quantity in radians to degrees. |
funcExp17 | Base-e Exponential. |
funcExp218 | Base-2 Exponential. |
funcFloor19 | Finds the nearest integer less than or equal to the parameter. |
funcFrac20 | Computes the fractional part of the argument. |
funcInverseSqrt21 | Returns the inverse of the square root of the parameter. |
funcLog22 | Natural logarithm. |
funcLog223 | Base-2 logarithm. |
funcRadians24 | Converts a quantity in degrees to radians. |
funcRound25 | Finds the nearest integer to the parameter. |
funcRoundeven26 | Finds the nearest even integer to the parameter. |
funcSign27 | Extracts the sign of the parameter, i.e. returns -1 if the parameter is negative, 1 if it's positive and 0 otherwise. |
funcSin28 | Returns the sine of the parameter. |
funcSinh29 | Returns the hyperbolic sine of the parameter. |
funcSqrt30 | Returns the square root of the parameter. |
funcTan31 | Returns the tangent of the parameter. |
funcTanh32 | Returns the hyperbolic tangent of the parameter. |
funcTrunc33 | Returns a value equal to the nearest integer to the parameter whose absolute value is not larger than the absolute value of the parameter. |
funcOneminus34 | Returns 1.0 - vector. |