i_float 2.0.0

This fixed float math library provides an efficient and deterministic solution for arithmetic and geometric operations.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[cfg(test)]
mod tests {
    use i_float::fix_vec::FixVec;

    #[test]
    fn test_0() {
        let point = FixVec::new(5, 1);
        let s = format!("{point}");

        assert!(s.eq("[5, 1]"));
    }
}