pub fn fmodf(x: f32, y: f32) -> f32
Calculate the remainder of x / y, the precise result of x - trunc(x / y) * y.
x / y
x - trunc(x / y) * y