From ff2da7fb27f0ea7a15b1dc6b6daf763fe7faf13b Mon Sep 17 00:00:00 2001 From: Sébastien Crozet Date: Sun, 6 Sep 2020 12:16:09 +0200 Subject: Move benchmark demos into their own directory. --- examples2d/stress_joint_fixed2.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples2d/stress_joint_fixed2.rs') diff --git a/examples2d/stress_joint_fixed2.rs b/examples2d/stress_joint_fixed2.rs index 31b3e4f..32a219e 100644 --- a/examples2d/stress_joint_fixed2.rs +++ b/examples2d/stress_joint_fixed2.rs @@ -42,7 +42,7 @@ pub fn init_world(testbed: &mut Testbed) { .translation(x + fk * shift, y - fi * shift) .build(); let child_handle = bodies.insert(rigid_body); - let collider = ColliderBuilder::ball(rad).density(1.0).build(); + let collider = ColliderBuilder::ball(rad).build(); colliders.insert(collider, child_handle, &mut bodies); // Vertical joint. -- cgit