fluffl/math/
fixedpoint.rs

1use std::{
2    fmt::{Debug, Display},
3    ops::*,
4};
5
6mod fp32;
7
8mod fp64;
9
10pub use self::{fp32::*, fp64::FP64};