aboutsummaryrefslogtreecommitdiff
path: root/benchmarks2d/joint_prismatic2.rs
diff options
context:
space:
mode:
authorSébastien Crozet <developer@crozet.re>2022-01-02 14:47:40 +0100
committerSébastien Crozet <developer@crozet.re>2022-01-02 16:58:36 +0100
commitf74b8401ad9ef50b8cdbf1f43a2b21f6c42b0ebc (patch)
tree53ac492fea5942a7d466f58a0095f39505674ea4 /benchmarks2d/joint_prismatic2.rs
parentb45d4b5ac2b31856c15e802b31e288a58940cbf2 (diff)
downloadrapier-f74b8401ad9ef50b8cdbf1f43a2b21f6c42b0ebc.tar.gz
rapier-f74b8401ad9ef50b8cdbf1f43a2b21f6c42b0ebc.tar.bz2
rapier-f74b8401ad9ef50b8cdbf1f43a2b21f6c42b0ebc.zip
Implement multibody joints and the new solver
Diffstat (limited to 'benchmarks2d/joint_prismatic2.rs')
-rw-r--r--benchmarks2d/joint_prismatic2.rs15
1 files changed, 7 insertions, 8 deletions
diff --git a/benchmarks2d/joint_prismatic2.rs b/benchmarks2d/joint_prismatic2.rs
index c2b4bf3..4733088 100644
--- a/benchmarks2d/joint_prismatic2.rs
+++ b/benchmarks2d/joint_prismatic2.rs
@@ -7,7 +7,8 @@ pub fn init_world(testbed: &mut Testbed) {
*/
let mut bodies = RigidBodySet::new();
let mut colliders = ColliderSet::new();
- let mut joints = JointSet::new();
+ let mut impulse_joints = ImpulseJointSet::new();
+ let multibody_joints = MultibodyJointSet::new();
/*
* Create the balls
@@ -46,12 +47,10 @@ pub fn init_world(testbed: &mut Testbed) {
UnitVector::new_normalize(vector![-1.0, 1.0])
};
- let mut prism =
- PrismaticJoint::new(Point::origin(), axis, point![0.0, shift], axis);
- prism.limits_enabled = true;
- prism.limits[0] = -1.5;
- prism.limits[1] = 1.5;
- joints.insert(curr_parent, curr_child, prism);
+ let mut prism = PrismaticJoint::new(axis)
+ .local_anchor2(point![0.0, shift])
+ .limit_axis([-1.5, 1.5]);
+ impulse_joints.insert(curr_parent, curr_child, prism);
curr_parent = curr_child;
}
@@ -61,6 +60,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![80.0, 80.0], 15.0);
}