modulus(Float,Float):Float
Floating point modulo
Declaration
Source position: math.pp line 227
operator mod(const a: Float; const b: Float) : Float;
Description
Modulus is the floating-point equivalent of the modulo operation a mod b. It returns the result of
a-b * Int(a/b)
Errors
b may not be zero, but no check is performed.
See also
| Name | Description |
|---|---|
| FMod | Floatin point modulo |