![]() |
VR-Link API Documentation for DIS
|
This file exists to provide backwards compatibility only, and may be removed in a future release. More...
Go to the source code of this file.
Functions | |
| double | DtModPer (double x, double incl, double excl) |
| Periodic modulus. More... | |
| double | DtModPerZero (double x, double per) |
| For x with period per, return 0 <= x < per. More... | |
| double | DtModPerLo (double x, double min, double max) |
| For x with period (max-min), return min <= x < max. More... | |
| double | DtModPerHi (double x, double min, double max) |
| For x with period (max-min), return min < x <= max. More... | |
This file exists to provide backwards compatibility only, and may be removed in a future release.
Periodic modulus.
For x with period ABS(incl-excl), return DtModPerLo(x, incl, excl) if incl < excl return DtModPerHi(x, excl, incl) if incl > excl
For x with period (max-min), return min < x <= max.
For x with period (max-min), return min <= x < max.