diff options
| author | Sébastien Crozet <developer@crozet.re> | 2024-01-24 23:26:35 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-24 23:26:35 +0100 |
| commit | 7ba53df734128c45d3440366169d5f10bfa87183 (patch) | |
| tree | a33c7700e9319ed04a454ae760e6da78eabefa11 /src/pipeline | |
| parent | d84aa82cf645cfc1ebf2a40e34d000b402bae47a (diff) | |
| parent | 1837d8f2b74c6db43925d3dc932f9a42f029b98f (diff) | |
| download | rapier-7ba53df734128c45d3440366169d5f10bfa87183.tar.gz rapier-7ba53df734128c45d3440366169d5f10bfa87183.tar.bz2 rapier-7ba53df734128c45d3440366169d5f10bfa87183.zip | |
Merge pull request #582 from dimforge/misc
Narrow-phase methods renames + some re-exports
Diffstat (limited to 'src/pipeline')
| -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; } |
