1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
pub(crate) trait FloatExt { fn floor(self) -> Self; fn ceil(self) -> Self; fn fract(self) -> Self; fn trunc(self) -> Self; fn round(self) -> Self; fn abs(self) -> Self; } impl FloatExt for f32 { #[inline] fn floor(self) -> Self { libm::floorf(self) } #[inline] fn ceil(self) -> Self { libm::ceilf(self) } #[inline] fn fract(self) -> Self { self - self.trunc() } #[inline] fn trunc(self) -> Self { libm::truncf(self) } #[inline] fn round(self) -> Self { libm::roundf(self) } #[inline] fn abs(self) -> Self { libm::fabsf(self) } }