[][src]Struct physx::articulation_cache::ArticulationCache

pub struct ArticulationCache { /* fields omitted */ }

Implementations

impl ArticulationCache[src]

pub fn new(px_articulation_cache: *mut PxArticulationCache) -> Self[src]

pub fn proxy(&self) -> Self[src]

pub fn compute_dof_information(&mut self, body: &ArticulationReducedCoordinate)[src]

pub fn get_offset(&self, link_index: usize) -> u32[src]

pub fn get_dofs(&self, link_index: usize) -> u8[src]

pub fn set_joint_position(&mut self, link_index: usize, data: &[f32])[src]

pub fn set_joint_velocity(&mut self, link_index: usize, data: &[f32])[src]

pub fn set_joint_acceleration(&mut self, link_index: usize, data: &[f32])[src]

pub fn set_joint_force(&mut self, link_index: usize, data: &[f32])[src]

pub fn read_joint_position(&self, link_index: usize) -> &[f32][src]

pub fn read_joint_velocity(&self, link_index: usize) -> &[f32][src]

pub fn read_joint_acceleration(&self, link_index: usize) -> &[f32][src]

pub fn read_joint_force(&self, link_index: usize) -> &[f32][src]

Trait Implementations

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.