1 2 3 4 5 6 7 8 9 10 11 12
//! Polynomial approximations for vector math. pub(crate) mod base; mod exponential; mod hyperbolic; mod logarithm; mod trigonometry; pub use exponential::exp; pub use hyperbolic::tanh; pub use logarithm::ln; pub use trigonometry::{cos, sin};