1#![doc = include_str!("../README.md")]
23#[cfg(test)]
4mod test;
5mod vector;
6pub use vector::Vector;
78/// 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>;