[][src]Struct nphysics2d::algebra::Velocity2

#[repr(C)]
pub struct Velocity2<N: RealField> {
    pub linear: Vector2<N>,
    pub angular: N,
}

A velocity structure combining both the linear angular velocities of a point.

Fields

linear: Vector2<N>

The linear velocity.

angular: N

The angular velocity.

Methods

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

pub fn new(linear: Vector2<N>, angular: N) -> Self[src]

Create velocity from its linear and angular parts.

pub fn from_vectors(linear: Vector2<N>, angular: Vector1<N>) -> Self[src]

Create velocity from its linear and angular parts.

pub fn angular(w: N) -> Self[src]

Create a purely angular velocity.

pub fn linear(vx: N, vy: N) -> Self[src]

Create a purely linear velocity.

pub fn zero() -> Self[src]

Create a zero velocity.

pub fn between_positions(
    start: &Isometry2<N>,
    end: &Isometry2<N>,
    time: N
) -> Self
[src]

Computes the velocity required to move from start to end in the given time.

pub fn angular_vector(&self) -> Vector1<N>[src]

The angular part of the velocity.

pub fn integrate(&self, dt: N) -> Isometry2<N>[src]

Compute the displacement due to this velocity integrated during the time dt.

pub fn to_transform(&self) -> Isometry2<N>[src]

Compute the displacement due to this velocity integrated during a time equal to 1.0.

This is equivalent to self.integrate(1.0).

pub fn as_slice(&self) -> &[N][src]

This velocity seen as a slice.

The linear part is stored first.

pub fn as_mut_slice(&mut self) -> &mut [N][src]

This velocity seen as a mutable slice.

The linear part is stored first.

pub fn as_vector(&self) -> &Vector3<N>[src]

This velocity seen as a vector.

The linear part is stored first.

pub fn as_vector_mut(&mut self) -> &mut Vector3<N>[src]

This velocity seen as a mutable vector.

The linear part is stored first.

pub fn from_vector<S: Storage<N, U3>>(data: &Vector<N, U3, S>) -> Self[src]

Create a velocity from a vector.

The linear part of the velocity is expected to be first inside of the input vector.

pub fn from_slice(data: &[N]) -> Self[src]

Create a velocity from a slice.

The linear part of the velocity is expected to be first inside of the input slice.

pub fn shift(&self, shift: &Vector2<N>) -> Self[src]

Compute the velocity of a point that is located at the coordinates shift relative to the point having self as velocity.

pub fn rotated(&self, rot: &Rotation2<N>) -> Self[src]

Rotate each component of self by rot.

pub fn transformed(&self, iso: &Isometry2<N>) -> Self[src]

Transform each component of self by iso.

Trait Implementations

impl<N: RealField> Add<Velocity2<N>> for Velocity2<N>[src]

type Output = Self

The resulting type after applying the + operator.

impl<N: RealField> AddAssign<Velocity2<N>> for Velocity2<N>[src]

impl<N: Clone + RealField> Clone for Velocity2<N>[src]

impl<N: Copy + RealField> Copy for Velocity2<N>[src]

impl<N: Debug + RealField> Debug for Velocity2<N>[src]

impl<N: RealField> Mul<N> for Velocity2<N>[src]

type Output = Self

The resulting type after applying the * operator.

impl<N: RealField> Mul<Velocity2<N>> for Inertia2<N>[src]

type Output = Force2<N>

The resulting type after applying the * operator.

impl<N: RealField> Sub<Velocity2<N>> for Velocity2<N>[src]

type Output = Self

The resulting type after applying the - operator.

impl<N: RealField> SubAssign<Velocity2<N>> for Velocity2<N>[src]

Auto Trait Implementations

impl<N> RefUnwindSafe for Velocity2<N> where
    N: RefUnwindSafe + Scalar

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

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

impl<N> Unpin for Velocity2<N> where
    N: Scalar + Unpin

impl<N> UnwindSafe for Velocity2<N> where
    N: Scalar + UnwindSafe

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, Right> ClosedAdd<Right> for T where
    T: Add<Right, Output = T> + AddAssign<Right>, 

impl<T, Right> ClosedSub<Right> for T where
    T: Sub<Right, Output = T> + SubAssign<Right>, 

impl<T> Downcast for T where
    T: Any

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Slottable for T where
    T: Copy
[src]

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

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<V, T> VZip<V> for T where
    V: MultiLane<T>,