Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
"fmod(x, y)" was replaced by "x - (int)(x / y) * y", and then simplified. h = fmod((h / 6.0 + 1.0), 1.0); h = (h / 6.0 + 1.0) - (int)((h / 6.0 + 1.0) / 1.0) * 1.0; h = (h / 6.0 + 1.0) - (int)(h / 6.0 + 1.0);
- Loading branch information