1
2
3
4
5
6
7
8
#[path = "ops/lib.rs"]
pub mod ops;

mod vec3;
pub use vec3::Vec3;

#[path = "impls/lib.rs"]
mod impls;