Defines1
SymbolDescription
FLOAT_PI
Functions43
SymbolDescription
__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__
ArcCosineReturns the arccosine of the input value.
ArcSineReturns the arcsine of the input value.
ArcTangentReturns the arctangent of the input value.
ArcTangent2Returns the arctangent2 of the input values.
CosineReturns the cosine of the argument.
DegToRadConverts degrees to radians.
ExponentialReturns the value of raising the input by e.
floatConverts an integer into a floating point value.
FloatAbsReturns an absolute value.
FloatAdd
FloatCompareCompares two floats.
FloatDiv
FloatFractionReturns the decimal part of a float.
FloatMod
FloatMul
FloatSub
GetURandomFloatReturns a uniform random float in the range [0, 1). Note: Uniform random number streams are seeded automatically per-plugin.
GetURandomIntReturns a random integer in the range [0, 2^31-1]. Note: Uniform random number streams are seeded automatically per-plugin.
LogarithmReturns the logarithm of any base specified.
PowReturns the value raised to the power of the exponent.
RadToDegConverts radians to degrees.
RoundFloatRounds a floating point number using the "round to nearest" algorithm.
RoundToCeilRounds a float to the next highest integer value.
RoundToFloorRounds a float to the next lowest integer value.
RoundToNearestStandard IEEE rounding.
RoundToZeroRounds a float to the closest integer to zero.
SetURandomSeedSeeds a plugin's uniform random number stream. This is done automatically, so normally it is totally unnecessary to call this.
SetURandomSeedSimpleSeeds a plugin's uniform random number stream. This is done automatically, so normally it is totally unnecessary to call this.
SineReturns the sine of the argument.
SquareRootReturns the square root of the input value, equivalent to floatpower(value, 0.5).
TangentReturns the tangent of the argument.