Skip to content

Paper on parallel implementation of two-phase collision detection with triangle meshes, or polyhedrons with only triangular faces, with an emphasis on the broad-phase portion.

Notifications You must be signed in to change notification settings

phosilli/Collision_Detection_in_Parallel

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

We implemented two-phase collision detection with triangle meshes, or polyhedrons with only triangular faces, with an emphasis on the broad-phase portion. Our algorithm relies on placing objects in a fixed grid subdivision of space based on their size, and improves beyond the naive O(n^2) by only checking for bounding ball intersections between objects of adjacent grid cells. In order to permit parallelism, our narrow phase checks are performed entirely after the broad-phase; these are also parallelized. We then analyzed the speedup gained from these parallel versions, and evaluate the effectiveness of different OpenMP schedulers and various re-orderings of steps of the algorithm.

About

Paper on parallel implementation of two-phase collision detection with triangle meshes, or polyhedrons with only triangular faces, with an emphasis on the broad-phase portion.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages