pub trait ArticulationJointBase: Class<PxArticulationJointBase> + Base {
    fn set_child_pose(&mut self, pose: &PxTransform) { ... }
    fn get_child_pose(&self) -> PxTransform { ... }
    fn set_parent_pose(&mut self, pose: &PxTransform) { ... }
    fn get_parent_pose(&self) -> PxTransform { ... }
    fn get_joint_transform_global(&self) -> PxTransform { ... }
}

Provided Methods

Set the pose of the joint in the child frame

Get the pose of the joint in the child frame

Set the pose of the joint in the parent frame

Get the pose of the joint in the parent frame

Get the global pose of this joint.

Implementors