nd_vec/
lib.rs

1#![doc = include_str!("../README.md")]
2
3#[cfg(test)]
4mod test;
5mod vector;
6pub use vector::Vector;
7
8/// Alias for a 2-dimensional vector with the given type.
9pub type Vec2<T> = Vector<T, 2>;
10/// Alias for a 3-dimensional vector with the given type.
11pub type Vec3<T> = Vector<T, 3>;