Adding a Rope Joint

This commit is contained in:
Wolftousen
2022-11-04 23:47:54 -04:00
parent 506f911fe0
commit 150b113a18
5 changed files with 341 additions and 1 deletions

View File

@@ -5,6 +5,7 @@ pub use self::motor_model::MotorModel;
pub use self::multibody_joint::*;
pub use self::prismatic_joint::*;
pub use self::revolute_joint::*;
pub use self::rope_joint::*;
#[cfg(feature = "dim3")]
pub use self::spherical_joint::*;
@@ -16,6 +17,7 @@ mod motor_model;
mod multibody_joint;
mod prismatic_joint;
mod revolute_joint;
mod rope_joint;
#[cfg(feature = "dim3")]
mod spherical_joint;