aboutsummaryrefslogtreecommitdiff
path: root/benchmarks2d/all_benchmarks2.rs
diff options
context:
space:
mode:
authorCrozet Sébastien <developer@crozet.re>2020-12-27 18:14:22 +0100
committerCrozet Sébastien <developer@crozet.re>2020-12-29 11:31:59 +0100
commit8d925a02ef97844bc937584a9095c1396daeee35 (patch)
tree687a77ccde4bdade1832a19ea3a98e35d141c2b8 /benchmarks2d/all_benchmarks2.rs
parent27ebb541f8766477464ce3e910ba3fd0822df818 (diff)
downloadrapier-8d925a02ef97844bc937584a9095c1396daeee35.tar.gz
rapier-8d925a02ef97844bc937584a9095c1396daeee35.tar.bz2
rapier-8d925a02ef97844bc937584a9095c1396daeee35.zip
Add convex polygons support.
Diffstat (limited to 'benchmarks2d/all_benchmarks2.rs')
-rw-r--r--benchmarks2d/all_benchmarks2.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/benchmarks2d/all_benchmarks2.rs b/benchmarks2d/all_benchmarks2.rs
index 9a7a607..e5f2ff1 100644
--- a/benchmarks2d/all_benchmarks2.rs
+++ b/benchmarks2d/all_benchmarks2.rs
@@ -13,6 +13,7 @@ use std::cmp::Ordering;
mod balls2;
mod boxes2;
mod capsules2;
+mod convex_polygons2;
mod heightfield2;
mod joint_ball2;
mod joint_fixed2;
@@ -55,6 +56,7 @@ pub fn main() {
("Balls", balls2::init_world),
("Boxes", boxes2::init_world),
("Capsules", capsules2::init_world),
+ ("Convex polygons", convex_polygons2::init_world),
("Heightfield", heightfield2::init_world),
("Pyramid", pyramid2::init_world),
("(Stress test) joint ball", joint_ball2::init_world),