diff options
Diffstat (limited to 'benchmarks3d/pyramid3.rs')
| -rw-r--r-- | benchmarks3d/pyramid3.rs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/benchmarks3d/pyramid3.rs b/benchmarks3d/pyramid3.rs index 655ecb7..b378da4 100644 --- a/benchmarks3d/pyramid3.rs +++ b/benchmarks3d/pyramid3.rs @@ -41,7 +41,8 @@ pub fn init_world(testbed: &mut Testbed) { */ let mut bodies = RigidBodySet::new(); let mut colliders = ColliderSet::new(); - let joints = JointSet::new(); + let impulse_joints = ImpulseJointSet::new(); + let multibody_joints = MultibodyJointSet::new(); /* * Ground @@ -73,6 +74,6 @@ pub fn init_world(testbed: &mut Testbed) { /* * Set up the testbed. */ - testbed.set_world(bodies, colliders, joints); + testbed.set_world(bodies, colliders, impulse_joints, multibody_joints); testbed.look_at(point![100.0, 100.0, 100.0], Point::origin()); } |
