[][src]Trait physx::articulation_joint_base::ArticulationJointBase

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

Provided methods

pub fn set_child_pose(&mut self, pose: &PxTransform)[src]

Set the pose of the joint in the child frame

pub fn get_child_pose(&self) -> PxTransform[src]

Get the pose of the joint in the child frame

pub fn set_parent_pose(&mut self, pose: &PxTransform)[src]

Set the pose of the joint in the parent frame

pub fn get_parent_pose(&self) -> PxTransform[src]

Get the pose of the joint in the parent frame

pub fn get_joint_transform_global(&self) -> PxTransform[src]

Get the global pose of this joint.

Loading content...

Implementors

impl<T> ArticulationJointBase for T where
    T: Class<PxArticulationJointBase> + Base
[src]

Loading content...