aboutsummaryrefslogtreecommitdiff
path: root/examples2d/pyramid2.rs
diff options
context:
space:
mode:
authorSébastien Crozet <developer@crozet.re>2020-09-06 12:16:09 +0200
committerSébastien Crozet <developer@crozet.re>2020-09-06 12:16:22 +0200
commitff2da7fb27f0ea7a15b1dc6b6daf763fe7faf13b (patch)
tree76578c4a2ff16592b98eea9cbd9c9b07646240a4 /examples2d/pyramid2.rs
parent3080c6e7d2e7bad0ac55095ccc24b1ac8bd5449a (diff)
downloadrapier-ff2da7fb27f0ea7a15b1dc6b6daf763fe7faf13b.tar.gz
rapier-ff2da7fb27f0ea7a15b1dc6b6daf763fe7faf13b.tar.bz2
rapier-ff2da7fb27f0ea7a15b1dc6b6daf763fe7faf13b.zip
Move benchmark demos into their own directory.
Diffstat (limited to 'examples2d/pyramid2.rs')
-rw-r--r--examples2d/pyramid2.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples2d/pyramid2.rs b/examples2d/pyramid2.rs
index 4d6fe07..e6a715b 100644
--- a/examples2d/pyramid2.rs
+++ b/examples2d/pyramid2.rs
@@ -42,7 +42,7 @@ pub fn init_world(testbed: &mut Testbed) {
// Build the rigid body.
let rigid_body = RigidBodyBuilder::new_dynamic().translation(x, y).build();
let handle = bodies.insert(rigid_body);
- let collider = ColliderBuilder::cuboid(rad, rad).density(1.0).build();
+ let collider = ColliderBuilder::cuboid(rad, rad).build();
colliders.insert(collider, handle, &mut bodies);
}
}