Add ( numbers... (eval=true) ) v.<0.9.6Returns ResultAdds all arguments together and returns the result. Minus ( numbers... (eval=true) ) v.<0.9.6Returns ResultNegates all arguments from the first one and returns the result. Multiply ( numbers... (eval=true) ) v.<0.9.6Returns ResultMultiplies all arguments with the first one and returns the result. Divide ( numbers... (eval=true) ) v.<0.9.6Returns ResultDivides all arguments from the first one and returns the result. Mod ( numbers... (eval=true) ) v.<0.9.6Returns ResultApplies modulo from all arguments against the first one and returns the result. Equal ( value1 (eval=true), value2 (eval=true) ) v.<0.9.6Returns Matching (1/0)Compares values and returns whether or not they match. Not limited to numbers; works for strings as well. LargerThan ( value1 (eval=true), value2 (eval=true) ) v.<0.9.6Returns ResultReturns whether or not value1 is larger than value2. SmallerThan ( value1 (eval=true), value2 (eval=true) ) v.<0.9.6Returns ResultReturns whether or not value1 is smaller than value2. Sine ( value (eval=true) ) v.<0.9.6Returns ResultReturns the sine of value. This maps directly to the C++ function. Cosine ( value (eval=true) ) v.<0.9.6Returns ResultReturns the cosine of value. This maps directly to the C++ function. Tangent ( value (eval=true) ) v.<0.9.6Returns ResultReturns the tangent of value. This maps directly to the C++ function. ArcCosine ( value (eval=true) ) v.<0.9.6Returns ResultReturns the arccosine of value. This maps directly to the C++ function. ArcSine ( value (eval=true) ) v.<0.9.6Returns ResultReturns the arcsine of value. This maps directly to the C++ function. ArcTangent ( value (eval=true) ) v.<0.9.6Returns ResultReturns the arctangent of value. This maps directly to the C++ function. ArcTangent2 ( x (eval=true), y (eval=true) ) v.<0.9.6Returns ResultReturns the atan2 of two values. This maps directly to the C++ function. Power ( base (eval=true), exponent (eval=true) ) v.<0.9.6Returns ResultReturns the power of two values. This maps directly to the C++ function. SquareRoot ( value (eval=true) ) v.<0.9.6Returns ResultReturns the square root of value. This maps directly to the C++ function. Floor ( value (eval=true) ) v.<0.9.6Returns ResultReturns the floor of value. This maps directly to the C++ function. Ceiling ( value (eval=true) ) v.<0.9.6Returns ResultReturns the ceiling of value. This maps directly to the C++ function. Round ( value (eval=true) ) v.<0.9.6Returns ResultReturns value rounded. This maps directly to the C++ function. NaturalLogarithm ( value (eval=true) ) v.<0.9.6Returns ResultReturns the natural logarithm of value. This maps directly to the C++ function.
|