diff options
| author | Sébastien Crozet <developer@crozet.re> | 2023-01-22 19:01:09 +0100 |
|---|---|---|
| committer | Sébastien Crozet <developer@crozet.re> | 2023-01-22 19:01:09 +0100 |
| commit | 26596bdc2ef7537619ab763668381f8b5496b726 (patch) | |
| tree | 1ddab05177fba9f61ad68c779c1f9bb09fd35a64 /examples3d/all_examples3.rs | |
| parent | 1a4183cc94acc3210e4ae467abbea7d68e51c5ff (diff) | |
| download | rapier-voxels.tar.gz rapier-voxels.tar.bz2 rapier-voxels.zip | |
Voxel fracture experimentsvoxels
Diffstat (limited to 'examples3d/all_examples3.rs')
| -rw-r--r-- | examples3d/all_examples3.rs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/examples3d/all_examples3.rs b/examples3d/all_examples3.rs index e51e185..67147e3 100644 --- a/examples3d/all_examples3.rs +++ b/examples3d/all_examples3.rs @@ -35,6 +35,8 @@ mod joints3; // mod joints3; mod character_controller3; mod debug_internal_edges3; +mod convex_voxel_decomposition3; +mod debug_excentric_boxes3; mod keva3; mod locked_rotations3; mod newton_cradle3; @@ -92,6 +94,10 @@ pub fn main() { ("Collision groups", collision_groups3::init_world), ("Compound", compound3::init_world), ("Convex decomposition", convex_decomposition3::init_world), + ( + "Convex voxel decomposition", + convex_voxel_decomposition3::init_world, + ), ("Convex polyhedron", convex_polyhedron3::init_world), ("Damping", damping3::init_world), ("Domino", domino3::init_world), @@ -123,6 +129,10 @@ pub fn main() { ("(Debug) triangle", debug_triangle3::init_world), ("(Debug) trimesh", debug_trimesh3::init_world), ("(Debug) cylinder", debug_cylinder3::init_world), + ( + "(Debug) excentric boxes", + debug_excentric_boxes3::init_world, + ), ("(Debug) infinite fall", debug_infinite_fall3::init_world), ("(Debug) prismatic", debug_prismatic3::init_world), ("(Debug) rollback", debug_rollback3::init_world), |
