linmath 0.0.2

A linear algebra and mathematics library for computer graphics.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[cfg(test)]
#[macro_use]
extern crate approx;
#[cfg(not(test))]
extern crate approx;
extern crate num_traits;

pub use matrix::*;
pub use vector::*;

mod matrix;
mod vector;