nphysics3d 0.24.0

3-dimensional physics engine in Rust. This crate is being superseded by the rapier3d crate.
Documentation
1
2
3
4
5
6
7
8
9
10
//! The physics world.

pub use self::geometrical_world::{
    BroadPhasePairFilterSets, DefaultBroadPhasePairFilterSets, DefaultGeometricalWorld,
    GeometricalWorld,
};
pub use self::mechanical_world::{DefaultMechanicalWorld, MechanicalWorld};

mod geometrical_world;
mod mechanical_world;