ft_lib 1.0.3

Manual implementation of some math functions.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod ft_abs;
pub mod ft_atan;
pub mod ft_cbrt;
pub mod ft_cos;
pub mod ft_powi;
pub mod ft_sqrt;
pub mod ft_get_input;

pub use ft_abs::ft_abs;
pub use ft_atan::ft_atan;
pub use ft_cbrt::ft_cbrt;
pub use ft_cos::ft_cos;
pub use ft_powi::ft_powi;
pub use ft_sqrt::ft_sqrt;
pub use ft_get_input::ft_get_input;