linal 0.2.5

tiny linear algebra library without dependencies
Documentation
1
2
3
4
5
6
7
8
9
10
//! Small and simple library to work with 2D and 3D vectors
#![warn(missing_docs)]

#[macro_use]
mod macros;
pub mod vec2;
pub mod vec3;
// re-export
pub use vec2::Vec2;
pub use vec3::Vec3;