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

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

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

Set the pose of the joint in the child frame

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

Get the pose of the joint in the child frame

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

Set the pose of the joint in the parent frame

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

Get the pose of the joint in the parent frame

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...