diff options
| author | Sébastien Crozet <sebcrozet@dimforge.com> | 2024-01-24 23:11:42 +0100 |
|---|---|---|
| committer | Sébastien Crozet <sebcrozet@dimforge.com> | 2024-01-24 23:11:42 +0100 |
| commit | 1837d8f2b74c6db43925d3dc932f9a42f029b98f (patch) | |
| tree | cfe1ed89d19bcc2909cf9ee3087ad32f1cf48764 /src | |
| parent | 46b244167ce3a63331b2526689a3bc3d7faafde0 (diff) | |
| download | rapier-1837d8f2b74c6db43925d3dc932f9a42f029b98f.tar.gz rapier-1837d8f2b74c6db43925d3dc932f9a42f029b98f.tar.bz2 rapier-1837d8f2b74c6db43925d3dc932f9a42f029b98f.zip | |
chore: fix tests
Diffstat (limited to 'src')
| -rw-r--r-- | src/pipeline/collision_pipeline.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pipeline/collision_pipeline.rs b/src/pipeline/collision_pipeline.rs index b086fbe..796cc84 100644 --- a/src/pipeline/collision_pipeline.rs +++ b/src/pipeline/collision_pipeline.rs @@ -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; } |
