Struct parry2d::query::NonlinearRigidMotion[][src]

pub struct NonlinearRigidMotion {
    pub start: Isometry<Real>,
    pub local_center: Point<Real>,
    pub linvel: Vector<Real>,
    pub angvel: Real,
}

A nonlinear motion from a starting isometry traveling at constant translational and rotational velocity.

Fields

start: Isometry<Real>

The starting isometry at t = 0.

local_center: Point<Real>

The local-space point at which the rotational part of this motion is applied.

linvel: Vector<Real>

The translational velocity of this motion.

angvel: Real

The angular velocity of this motion.

Implementations

impl NonlinearRigidMotion[src]

pub fn new(
    start: Isometry<Real>,
    local_center: Point<Real>,
    linvel: Vector<Real>,
    angvel: Real
) -> Self
[src]

Initialize a motion from a starting isometry and linear and angular velocities.

pub fn identity() -> Self[src]

Create a NonlinearRigidMotion that always returns the identity matrix.

pub fn constant_position(pos: Isometry<Real>) -> Self[src]

Create a NonlinearRigidMotion that always return pos.

pub fn freeze(&mut self, t: Real)[src]

Freezes this motion at the time t.

After calling this, any further calls to self.position_at_time will always return self.position_at_time(t) (where t is the value given to this method). This sets the linear velocity and angular velocity of self to zero.

#[must_use]pub fn append_translation(&self, tra: Vector<Real>) -> Self[src]

Appends a constant translation to this rigid-motion.

#[must_use]pub fn prepend_translation(&self, tra: Vector<Real>) -> Self[src]

Prepends a constant translation to this rigid-motion.

#[must_use]pub fn append(&self, iso: Isometry<Real>) -> Self[src]

Appends a constant isometry to this rigid-motion.

#[must_use]pub fn prepend(&self, iso: Isometry<Real>) -> Self[src]

Prepends a constant translation to this rigid-motion.

pub fn position_at_time(&self, t: Real) -> Isometry<Real>[src]

Computes the position at time t of a rigid-body following the motion described by self.

Trait Implementations

impl Clone for NonlinearRigidMotion[src]

impl Copy for NonlinearRigidMotion[src]

impl Debug for NonlinearRigidMotion[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> Az for T[src]

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

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

impl<T> CheckedAs for T[src]

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

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

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

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

impl<Src, Dst> LosslessTryInto<Dst> for Src where
    Dst: LosslessTryFrom<Src>, 
[src]

impl<Src, Dst> LossyInto<Dst> for Src where
    Dst: LossyFrom<Src>, 
[src]

impl<T> OverflowingAs for T[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> SaturatingAs for T[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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<T> UnwrappedAs for T[src]

impl<T> WrappingAs for T[src]