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;