aboutsummaryrefslogtreecommitdiff
path: root/examples3d/all_examples3.rs
diff options
context:
space:
mode:
authorSébastien Crozet <sebcrozet@dimforge.com>2024-04-28 10:53:00 +0200
committerSébastien Crozet <sebastien@crozet.re>2024-04-30 23:10:46 +0200
commit473921f118e58f4aee4cce45d21a8f89b7477c88 (patch)
treecbfffb2853770209cb85d18e2d25a240cd887a94 /examples3d/all_examples3.rs
parent9ba155748e9e90b42b6bd31661e7da3b80f2c122 (diff)
downloadrapier-473921f118e58f4aee4cce45d21a8f89b7477c88.tar.gz
rapier-473921f118e58f4aee4cce45d21a8f89b7477c88.tar.bz2
rapier-473921f118e58f4aee4cce45d21a8f89b7477c88.zip
feat: add dynamic trimesh example
Diffstat (limited to 'examples3d/all_examples3.rs')
-rw-r--r--examples3d/all_examples3.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/examples3d/all_examples3.rs b/examples3d/all_examples3.rs
index 1525c4c..4c4d962 100644
--- a/examples3d/all_examples3.rs
+++ b/examples3d/all_examples3.rs
@@ -31,6 +31,7 @@ mod debug_thin_cube_on_mesh3;
mod debug_triangle3;
mod debug_trimesh3;
mod domino3;
+mod dynamic_trimesh3;
mod fountain3;
mod heightfield3;
mod joints3;
@@ -104,6 +105,7 @@ pub fn main() {
("Convex polyhedron", convex_polyhedron3::init_world),
("Damping", damping3::init_world),
("Domino", domino3::init_world),
+ ("Dynamic trimeshes", dynamic_trimesh3::init_world),
("Heightfield", heightfield3::init_world),
("Impulse Joints", joints3::init_world_with_joints),
("Joint Motor Position", joint_motor_position3::init_world),