Merge pull request #582 from dimforge/misc

Narrow-phase methods renames + some re-exports
This commit is contained in:
Sébastien Crozet
2024-01-24 23:26:35 +01:00
committed by GitHub
4 changed files with 25 additions and 12 deletions

View File

@@ -210,7 +210,7 @@ mod tests {
let mut hit = false;
for (_, _, intersecting) in narrow_phase.intersections_with(a_handle) {
for (_, _, intersecting) in narrow_phase.intersection_pairs_with(a_handle) {
if intersecting {
hit = true;
}
@@ -262,7 +262,7 @@ mod tests {
let mut hit = false;
for (_, _, intersecting) in narrow_phase.intersections_with(a_handle) {
for (_, _, intersecting) in narrow_phase.intersection_pairs_with(a_handle) {
if intersecting {
hit = true;
}