aboutsummaryrefslogtreecommitdiff
path: root/src/dynamics/joint/multibody_joint/mod.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 /src/dynamics/joint/multibody_joint/mod.rs
parentb45d4b5ac2b31856c15e802b31e288a58940cbf2 (diff)
downloadrapier-f74b8401ad9ef50b8cdbf1f43a2b21f6c42b0ebc.tar.gz
rapier-f74b8401ad9ef50b8cdbf1f43a2b21f6c42b0ebc.tar.bz2
rapier-f74b8401ad9ef50b8cdbf1f43a2b21f6c42b0ebc.zip
Implement multibody joints and the new solver
Diffstat (limited to 'src/dynamics/joint/multibody_joint/mod.rs')
-rw-r--r--src/dynamics/joint/multibody_joint/mod.rs15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/dynamics/joint/multibody_joint/mod.rs b/src/dynamics/joint/multibody_joint/mod.rs
new file mode 100644
index 0000000..a701350
--- /dev/null
+++ b/src/dynamics/joint/multibody_joint/mod.rs
@@ -0,0 +1,15 @@
+//! MultibodyJoints using the reduced-coordinates formalism or using constraints.
+
+pub use self::multibody::Multibody;
+pub use self::multibody_joint::MultibodyJoint;
+pub use self::multibody_joint_set::{MultibodyIndex, MultibodyJointHandle, MultibodyJointSet};
+pub use self::multibody_link::MultibodyLink;
+pub use self::unit_multibody_joint::{unit_joint_limit_constraint, unit_joint_motor_constraint};
+
+mod multibody;
+mod multibody_joint_set;
+mod multibody_link;
+mod multibody_workspace;
+
+mod multibody_joint;
+mod unit_multibody_joint;