ncollide2d 0.33.0

2 and 3-dimensional collision detection library in Rust. Will be superseded by the parry2d crate.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Persistent and time-coherent collision detection.

pub use self::broad_phase::*;
pub use self::glue::*;
pub use self::narrow_phase::*;
pub use self::object::*;
pub use self::world::*;

pub mod broad_phase;
pub mod glue;
pub mod narrow_phase;
pub mod object;
pub mod world;