aboutsummaryrefslogtreecommitdiff
path: root/examples3d/all_examples3.rs
diff options
context:
space:
mode:
authorCrozet Sébastien <developer@crozet.re>2021-01-26 16:41:21 +0100
committerCrozet Sébastien <developer@crozet.re>2021-01-26 16:41:21 +0100
commit23a86c294e48da9c3aad82284a09791aabfeb88d (patch)
treec4adf2ccf4703ef103247f5035838f4071bf8c7c /examples3d/all_examples3.rs
parente1f50eb6e8daa9529e41f7044e67736cc5c50953 (diff)
downloadrapier-23a86c294e48da9c3aad82284a09791aabfeb88d.tar.gz
rapier-23a86c294e48da9c3aad82284a09791aabfeb88d.tar.bz2
rapier-23a86c294e48da9c3aad82284a09791aabfeb88d.zip
Allow using polylines as a collider shape.
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 ff5a3e8..9cbf4c3 100644
--- a/examples3d/all_examples3.rs
+++ b/examples3d/all_examples3.rs
@@ -13,6 +13,7 @@ use std::cmp::Ordering;
mod collision_groups3;
mod compound3;
mod convex_decomposition3;
+mod convex_polyhedron3;
mod damping3;
mod debug_add_remove_collider3;
mod debug_boxes3;
@@ -76,6 +77,7 @@ pub fn main() {
("Collision groups", collision_groups3::init_world),
("Compound", compound3::init_world),
("Convex decomposition", convex_decomposition3::init_world),
+ ("Convex polyhedron", convex_polyhedron3::init_world),
("Damping", damping3::init_world),
("Domino", domino3::init_world),
("Heightfield", heightfield3::init_world),