ncollide_entities 0.4.1

2 and 3-dimensional collision detection library in Rust: module describing the geometric entities and their mathematical definitions.
Documentation
//! Geometric entities manipulated by ncollide.

#![deny(non_camel_case_types)]
#![deny(unused_parens)]
#![deny(non_upper_case_globals)]
#![deny(unused_qualifications)]
#![warn(missing_docs)]
#![deny(unused_results)]
#![warn(unused_imports)]
#![doc(html_root_url = "http://ncollide.org/doc")]

extern crate rustc_serialize;
extern crate num;
extern crate nalgebra as na;
extern crate ncollide_math as math;
extern crate ncollide_utils as utils;

pub mod shape;
pub mod support_map;
pub mod bounding_volume;
pub mod partitioning;
pub mod inspection;