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;