i_float 3.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
13
14
#![no_std]
extern crate alloc;

#[cfg(feature = "core")]
pub mod adapter;
#[cfg(feature = "core")]
pub mod int;
#[cfg(feature = "core")]
pub mod triangle;

#[cfg(feature = "float_pt")]
pub mod float;

pub mod integration;