We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d01cc8b + de7acac commit b0953bcCopy full SHA for b0953bc
src/geometry/narrow_phase.rs
@@ -52,8 +52,10 @@ impl RawNarrowPhase {
52
}
53
54
55
- pub fn intersection_pair(&self, handle1: u32, handle2: u32) -> bool {
56
- self.0.intersection_pair_unknown_gen(handle1, handle2) == Some(true)
+ pub fn intersection_pair(&self, handle1: FlatHandle, handle2: FlatHandle) -> bool {
+ let handle1 = utils::collider_handle(handle1);
57
+ let handle2 = utils::collider_handle(handle2);
58
+ self.0.intersection_pair(handle1, handle2) == Some(true)
59
60
61
0 commit comments