[][src]Struct nphysics3d::object::MultibodyLink

pub struct MultibodyLink<N: RealField> { /* fields omitted */ }

One link of a multibody.

Methods

impl<N: RealField> MultibodyLink<N>[src]

pub fn new(
    internal_id: usize,
    assembly_id: usize,
    impulse_id: usize,
    multibody_handle: BodyHandle,
    parent_internal_id: usize,
    dof: Box<dyn Joint<N>>,
    parent_shift: Vector<N>,
    body_shift: Vector<N>,
    parent_to_world: Isometry<N>,
    local_to_world: Isometry<N>,
    local_to_parent: Isometry<N>,
    local_inertia: Inertia<N>,
    local_com: Point<N>
) -> Self
[src]

Creates a new multibody link.

pub fn is_root(&self) -> bool[src]

Checks if this link is the root of the multibody.

pub fn joint(&self) -> &dyn Joint<N>[src]

Reference to the joint attaching this link to its parent.

pub fn joint_mut(&mut self) -> &mut dyn Joint<N>[src]

Mutable reference to the joint attaching this link to its parent.

pub fn name(&self) -> &str[src]

This link's name.

pub fn set_name(&mut self, name: String)[src]

Sets this link's name.

pub fn part_handle(&self) -> BodyPartHandle[src]

The handle of this multibody link.

Trait Implementations

impl<N: RealField> BodyPart<N> for MultibodyLink<N>[src]

Auto Trait Implementations

impl<N> Send for MultibodyLink<N> where
    N: Scalar

impl<N> Sync for MultibodyLink<N> where
    N: Scalar

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.

impl<T> Downcast for T where
    T: Any
[src]

impl<SS, SP> SupersetOf for SP where
    SS: SubsetOf<SP>, 
[src]

impl<T> Same for T

type Output = T

Should always be Self