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
//! Interpolation of the motion of an object.

pub use self::rigid_motion::{
    ConstantLinearVelocityRigidMotion, ConstantVelocityRigidMotion, InterpolatedRigidMotion,
    RigidMotion, RigidMotionComposition,
};

mod rigid_motion;