diff options
| author | Sébastien Crozet <developer@crozet.re> | 2020-10-27 17:36:45 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-10-27 17:36:45 +0100 |
| commit | e279c7050cd55426cb28c8c9fb2ac9d4f0205d7c (patch) | |
| tree | 446cbf59cf32a82a67ed889f0041ab886c5ace7e /src/geometry/contact.rs | |
| parent | a52fb8d7e4649dce02e2131d848b84166df82d64 (diff) | |
| parent | 74f0297221607e1929db75e79089d7cb75558dfe (diff) | |
| download | rapier-e279c7050cd55426cb28c8c9fb2ac9d4f0205d7c.tar.gz rapier-e279c7050cd55426cb28c8c9fb2ac9d4f0205d7c.tar.bz2 rapier-e279c7050cd55426cb28c8c9fb2ac9d4f0205d7c.zip | |
Merge pull request #44 from dimforge/custom_callbacks_filtering
Added user-implementable traits for collision/proximity pair filtering.
Diffstat (limited to 'src/geometry/contact.rs')
| -rw-r--r-- | src/geometry/contact.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/geometry/contact.rs b/src/geometry/contact.rs index 1f50e43..d8f3632 100644 --- a/src/geometry/contact.rs +++ b/src/geometry/contact.rs @@ -15,7 +15,7 @@ bitflags::bitflags! { pub struct SolverFlags: u32 { /// The constraint solver will take this contact manifold into /// account for force computation. - const COMPUTE_FORCES = 0b01; + const COMPUTE_IMPULSES = 0b01; } } |
