Struct oxygengine_physics_2d::prelude::MultibodyLink[][src]

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

One link of a multibody.

Implementations

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

pub fn new(
    internal_id: usize,
    assembly_id: usize,
    impulse_id: usize,
    parent_internal_id: usize,
    dof: Box<dyn Joint<N> + 'static, Global>,
    parent_shift: Matrix<N, U2, U1, <DefaultAllocator as Allocator<N, U2, U1>>::Buffer>,
    body_shift: Matrix<N, U2, U1, <DefaultAllocator as Allocator<N, U2, U1>>::Buffer>,
    parent_to_world: Isometry<N, U2, Unit<Complex<N>>>,
    local_to_world: Isometry<N, U2, Unit<Complex<N>>>,
    local_to_parent: Isometry<N, U2, Unit<Complex<N>>>,
    local_inertia: Inertia2<N>,
    local_com: Point<N, U2>
) -> MultibodyLink<N>
[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> + 'static)[src]

Reference to the joint attaching this link to its parent.

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

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

pub fn parent_shift(
    &self
) -> &Matrix<N, U2, U1, <DefaultAllocator as Allocator<N, U2, U1>>::Buffer>
[src]

The shift between this link’s parent and this link joint origin.

pub fn body_shift(
    &self
) -> &Matrix<N, U2, U1, <DefaultAllocator as Allocator<N, U2, U1>>::Buffer>
[src]

The shift between this link’s joint origin and this link origin.

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

This link’s name.

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

Sets this link’s name.

The handle of this multibody link.

pub fn parent_id(&self) -> Option<usize>[src]

The handle of the parent link.

Trait Implementations

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

Auto Trait Implementations

impl<N> !RefUnwindSafe for MultibodyLink<N>

impl<N> Send for MultibodyLink<N>

impl<N> Sync for MultibodyLink<N>

impl<N> Unpin for MultibodyLink<N> where
    N: Unpin

impl<N> !UnwindSafe for MultibodyLink<N>

Blanket Implementations

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

impl<T> Any for T where
    T: Any

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

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

impl<T> Downcast for T where
    T: Any

impl<T> DowncastSync for T where
    T: Any + Send + Sync

impl<T> Event for T where
    T: Send + Sync + 'static, 

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

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

impl<T> Resource for T where
    T: Any, 

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,