diff options
| author | Crozet Sébastien <developer@crozet.re> | 2020-10-27 16:21:33 +0100 |
|---|---|---|
| committer | Crozet Sébastien <developer@crozet.re> | 2020-10-27 16:21:33 +0100 |
| commit | 24bd97636e890195c8a72f8e265809bbae44ab13 (patch) | |
| tree | 66ce439d547c46e79e4faf7de785fbb678f54e93 /src/geometry/contact.rs | |
| parent | cc44b65094766aab40561f22431a95877ed5ff11 (diff) | |
| download | rapier-24bd97636e890195c8a72f8e265809bbae44ab13.tar.gz rapier-24bd97636e890195c8a72f8e265809bbae44ab13.tar.bz2 rapier-24bd97636e890195c8a72f8e265809bbae44ab13.zip | |
Rename SolverFlags::COMPUTE_FORCES to SolverFlags::COMPUTE_IMPULSES.
This is closer to what the solver actually does.
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; } } |
