ncollide_math 0.6.0

2 and 3-dimensional collision detection library in Rust: module describing the algebraic entities used by ncollide.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Trait implemented by the primitive algebraic types used by ncollide.

extern crate rustc_serialize;
extern crate num_traits as num;
extern crate rand;
extern crate approx;
extern crate alga;
extern crate nalgebra as na;

pub use point::Point;
pub use vector::Vector;
pub use isometry::Isometry;

mod point;
mod vector;
mod isometry;