1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
pub mod i_comparable;
pub mod i_bound;
pub mod i_shape;
pub mod i_vicinity;

pub mod quat;
pub mod dualquat;
pub mod mat;

pub mod bound;
pub mod bound_sphere;

///shape implementations
pub mod ray;
pub mod point;
pub mod sphere;
pub mod plane;

pub mod intersect_gjk;

#[cfg(test)]
mod test;