| __FLOAT_ADD__ | |
| __FLOAT_DIV__ | |
| __FLOAT_EQ__ | |
| __FLOAT_GE__ | |
| __FLOAT_GT__ | |
| __FLOAT_LE__ | |
| __FLOAT_LT__ | |
| __FLOAT_MOD__ | |
| __FLOAT_MUL__ | Internal aliases for backwards compatibility. |
| __FLOAT_NE__ | |
| __FLOAT_NOT__ | |
| __FLOAT_SUB__ | |
| ArcCosine | Returns the arccosine of the input value. |
| ArcSine | Returns the arcsine of the input value. |
| ArcTangent | Returns the arctangent of the input value. |
| ArcTangent2 | Returns the arctangent2 of the input values. |
| Cosine | Returns the cosine of the argument. |
| DegToRad | Converts degrees to radians. |
| Exponential | Returns the value of raising the input by e. |
| float | Converts an integer into a floating point value. |
| FloatAbs | Returns an absolute value. |
| FloatAdd | |
| FloatCompare | Compares two floats. |
| FloatDiv | |
| FloatFraction | Returns the decimal part of a float. |
| FloatMod | |
| FloatMul | |
| FloatSub | |
| GetURandomFloat | Returns a uniform random float in the range [0, 1).
Note: Uniform random number streams are seeded automatically per-plugin. |
| GetURandomInt | Returns a random integer in the range [0, 2^31-1].
Note: Uniform random number streams are seeded automatically per-plugin. |
| Logarithm | Returns the logarithm of any base specified. |
| Pow | Returns the value raised to the power of the exponent. |
| RadToDeg | Converts radians to degrees. |
| RoundFloat | Rounds a floating point number using the "round to nearest" algorithm. |
| RoundToCeil | Rounds a float to the next highest integer value. |
| RoundToFloor | Rounds a float to the next lowest integer value. |
| RoundToNearest | Standard IEEE rounding. |
| RoundToZero | Rounds a float to the closest integer to zero. |
| SetURandomSeed | Seeds a plugin's uniform random number stream. This is done automatically,
so normally it is totally unnecessary to call this. |
| SetURandomSeedSimple | Seeds a plugin's uniform random number stream. This is done automatically,
so normally it is totally unnecessary to call this. |
| Sine | Returns the sine of the argument. |
| SquareRoot | Returns the square root of the input value, equivalent to floatpower(value, 0.5). |
| Tangent | Returns the tangent of the argument. |