Implement multibody joints and the new solver

This commit is contained in:
Sébastien Crozet
2022-01-02 14:47:40 +01:00
parent b45d4b5ac2
commit f74b8401ad
182 changed files with 9871 additions and 12645 deletions

View File

@@ -7,7 +7,8 @@ pub fn init_world(harness: &mut Harness) {
*/
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
@@ -59,7 +60,7 @@ pub fn init_world(harness: &mut Harness) {
/*
* Set up the harness.
*/
harness.set_world(bodies, colliders, joints);
harness.set_world(bodies, colliders, impulse_joints, multibody_joints);
}
fn main() {