vecmat 0.2.1

Lightweight low-dimensional vector and matrix library
Documentation
extern crate num_traits;
extern crate num_integer;

pub mod vec;
#[cfg(test)]
mod vec_test;

pub mod mat;
#[cfg(test)]
mod mat_test;

pub use vec::*;
pub use mat::*;