Requirements#

Summary#

Collider Approximations are optimized geometric representations used to improve collision detection performance in physics simulations. Complex mesh geometries are converted into simplified representations such as Signed Distance Fields (SDF), convex hulls, bounding boxes, or simplified meshes that maintain sufficient accuracy while dramatically reducing computational overhead.

Collider approximations are typically authored as separate USD prims with PhysicsCollisionAPI applied and are referenced by mesh colliders using the physics:approximation relationship. The main types of approximations include:

  • SDF (Signed Distance Fields): 3D distance field representations for complex geometries

  • Convex Hulls: Simplified convex representations of concave meshes

  • Bounding Boxes: Axis-aligned or oriented bounding box approximations

  • Simplified Meshes: Reduced polygon count versions of original meshes

Schema / OpenUSD Specification#

Collider approximations are created using the following schemas that are part of the core OpenUSD specification.

Requirements#