diff options
| author | Sébastien Crozet <developer@crozet.re> | 2022-07-02 13:26:49 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-07-02 13:26:49 +0200 |
| commit | cd0be8c076c69b88bb1848de72228225eeccb52d (patch) | |
| tree | 9a95aa611454c170c7f711db87f33fcd68f8bc2b /src/geometry | |
| parent | 1ba37b8f635bd79db2e48b07c038723f9e8c172f (diff) | |
| parent | 32e2ff6c96a77c0be549ed809dcd62aeab58340d (diff) | |
| download | rapier-cd0be8c076c69b88bb1848de72228225eeccb52d.tar.gz rapier-cd0be8c076c69b88bb1848de72228225eeccb52d.tar.bz2 rapier-cd0be8c076c69b88bb1848de72228225eeccb52d.zip | |
Merge pull request #354 from dimforge/force-event-typo
Name the contact force events ContactForceEvent instead of CollisionForceEvent
Diffstat (limited to 'src/geometry')
| -rw-r--r-- | src/geometry/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/geometry/mod.rs b/src/geometry/mod.rs index 48d71f8..df9a785 100644 --- a/src/geometry/mod.rs +++ b/src/geometry/mod.rs @@ -121,7 +121,7 @@ impl CollisionEvent { #[derive(Copy, Clone, PartialEq, Debug, Default)] /// Event occurring when the sum of the magnitudes of the contact forces /// between two colliders exceed a threshold. -pub struct CollisionForceEvent { +pub struct ContactForceEvent { /// The first collider involved in the contact. pub collider1: ColliderHandle, /// The second collider involved in the contact. |
