Skip to main content

concinnity_core/math/
mod.rs

1//! The scalar and vector primitives the rest of the vocabulary is built from:
2//! the f32 transcendentals `core` leaves to a math library, and the
3//! 3-component vector ops every layout and transform reaches for.
4mod scalar;
5pub mod vec3;
6
7pub use scalar::{
8    acos, asin, atan2, ceil, cos, exp, exp2, floor, fract, hypot, ln, log2, mul_add, powf, powi,
9    rem_euclid, round, sin, sin_cos, sqrt, tan, trunc,
10};