tiny_vect 0.1.3

A minimal vector math library for 2D and 3D operations in Rust.
Documentation
1
2
3
4
5
6
// lib.rs
pub mod vect2;
pub mod vect3;

pub use vect2::Vect2;
pub use vect3::Vect3;