//! Dynamics-specific algebraic entities: velocity, forces, and inertias.
pub use Velocity2;
pub use Velocity3;
pub use Force2;
pub use Force3;
pub use Inertia2;
pub use Inertia3;
/// The type of force to be applied with the `.apply_force` methods of a Body.
///
/// See the [user guide](https://www.nphysics.org/rigid_body_simulations_with_contacts/#one-time-force-application-and-impulses)
/// for details.