diff options
| author | Sébastien Crozet <developer@crozet.re> | 2022-07-01 17:45:11 +0200 |
|---|---|---|
| committer | Sébastien Crozet <developer@crozet.re> | 2022-07-01 17:45:11 +0200 |
| commit | 32e2ff6c96a77c0be549ed809dcd62aeab58340d (patch) | |
| tree | 9a95aa611454c170c7f711db87f33fcd68f8bc2b /src/geometry | |
| parent | 1ba37b8f635bd79db2e48b07c038723f9e8c172f (diff) | |
| download | rapier-32e2ff6c96a77c0be549ed809dcd62aeab58340d.tar.gz rapier-32e2ff6c96a77c0be549ed809dcd62aeab58340d.tar.bz2 rapier-32e2ff6c96a77c0be549ed809dcd62aeab58340d.zip | |
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. |
