diff options
| author | Sébastien Crozet <developer@crozet.re> | 2022-03-20 12:50:42 +0100 |
|---|---|---|
| committer | Sébastien Crozet <sebastien@crozet.re> | 2022-03-20 21:49:16 +0100 |
| commit | d22d3fcc9f69c874f08a21b7333933788067fc79 (patch) | |
| tree | eb2f56625860c8eb0a02d65f2a5abaa34e5d5376 /src/dynamics/joint/mod.rs | |
| parent | 8a7ec1f72e663c80d019c6dae6b455e410bf7807 (diff) | |
| download | rapier-d22d3fcc9f69c874f08a21b7333933788067fc79.tar.gz rapier-d22d3fcc9f69c874f08a21b7333933788067fc79.tar.bz2 rapier-d22d3fcc9f69c874f08a21b7333933788067fc79.zip | |
Cargo fmt
Diffstat (limited to 'src/dynamics/joint/mod.rs')
| -rw-r--r-- | src/dynamics/joint/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dynamics/joint/mod.rs b/src/dynamics/joint/mod.rs index 11b5c0f..bb35927 100644 --- a/src/dynamics/joint/mod.rs +++ b/src/dynamics/joint/mod.rs @@ -1,6 +1,6 @@ pub use self::fixed_joint::*; -pub use self::impulse_joint::*; pub use self::generic_joint::*; +pub use self::impulse_joint::*; pub use self::motor_model::MotorModel; pub use self::multibody_joint::*; pub use self::prismatic_joint::*; @@ -10,8 +10,8 @@ pub use self::revolute_joint::*; pub use self::spherical_joint::*; mod fixed_joint; -mod impulse_joint; mod generic_joint; +mod impulse_joint; mod motor_model; mod multibody_joint; mod prismatic_joint; |
