nd_vec 0.4.0

A compile time n-dimensional vector library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![doc = include_str!("../README.md")]

#[cfg(test)]
mod test;
mod vector;
pub use vector::Vector;

/// Alias for a 2-dimensional vector with the given type.
pub type Vec2<T> = Vector<T, 2>;
/// Alias for a 3-dimensional vector with the given type.
pub type Vec3<T> = Vector<T, 3>;