diff options
| author | Sébastien Crozet <developer@crozet.re> | 2020-09-06 12:16:09 +0200 |
|---|---|---|
| committer | Sébastien Crozet <developer@crozet.re> | 2020-09-06 12:16:22 +0200 |
| commit | ff2da7fb27f0ea7a15b1dc6b6daf763fe7faf13b (patch) | |
| tree | 76578c4a2ff16592b98eea9cbd9c9b07646240a4 /examples2d/sensor2.rs | |
| parent | 3080c6e7d2e7bad0ac55095ccc24b1ac8bd5449a (diff) | |
| download | rapier-ff2da7fb27f0ea7a15b1dc6b6daf763fe7faf13b.tar.gz rapier-ff2da7fb27f0ea7a15b1dc6b6daf763fe7faf13b.tar.bz2 rapier-ff2da7fb27f0ea7a15b1dc6b6daf763fe7faf13b.zip | |
Move benchmark demos into their own directory.
Diffstat (limited to 'examples2d/sensor2.rs')
| -rw-r--r-- | examples2d/sensor2.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples2d/sensor2.rs b/examples2d/sensor2.rs index c7e0205..959ecbf 100644 --- a/examples2d/sensor2.rs +++ b/examples2d/sensor2.rs @@ -40,7 +40,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); testbed.set_body_color(handle, Point3::new(0.5, 0.5, 1.0)); @@ -58,7 +58,7 @@ pub fn init_world(testbed: &mut Testbed) { // Solid cube attached to the sensor which // other colliders can touch. - let collider = ColliderBuilder::cuboid(rad, rad).density(1.0).build(); + let collider = ColliderBuilder::cuboid(rad, rad).build(); colliders.insert(collider, sensor_handle, &mut bodies); // We create a collider desc without density because we don't |
