Struct oxygengine_physics_2d::prelude::algebra::Velocity2[][src]

#[repr(C)]
pub struct Velocity2<N> where
    N: RealField
{ pub linear: Matrix<N, U2, U1, <DefaultAllocator as Allocator<N, U2, U1>>::Buffer>, pub angular: N, }

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

Fields

linear: Matrix<N, U2, U1, <DefaultAllocator as Allocator<N, U2, U1>>::Buffer>

The linear velocity.

angular: N

The angular velocity.

Implementations

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

pub fn new(
    linear: Matrix<N, U2, U1, <DefaultAllocator as Allocator<N, U2, U1>>::Buffer>,
    angular: N
) -> Velocity2<N>
[src]

Create velocity from its linear and angular parts.

pub fn from_vectors(
    linear: Matrix<N, U2, U1, <DefaultAllocator as Allocator<N, U2, U1>>::Buffer>,
    angular: Matrix<N, U1, U1, <DefaultAllocator as Allocator<N, U1, U1>>::Buffer>
) -> Velocity2<N>
[src]

Create velocity from its linear and angular parts.

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

Create a purely angular velocity.

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

Create a purely linear velocity.

pub fn zero() -> Velocity2<N>[src]

Create a zero velocity.

pub fn between_positions(
    start: &Isometry<N, U2, Unit<Complex<N>>>,
    end: &Isometry<N, U2, Unit<Complex<N>>>,
    time: N
) -> Velocity2<N>
[src]

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

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

The angular part of the velocity.

pub fn integrate(&self, dt: N) -> Isometry<N, U2, Unit<Complex<N>>>[src]

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

pub fn to_transform(&self) -> Isometry<N, U2, Unit<Complex<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]

Notable traits for &'_ [u8]

impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]
[src]

This velocity seen as a slice.

The linear part is stored first.

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

Notable traits for &'_ [u8]

impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]
[src]

This velocity seen as a mutable slice.

The linear part is stored first.

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

This velocity seen as a vector.

The linear part is stored first.

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

This velocity seen as a mutable vector.

The linear part is stored first.

pub fn from_vector<S>(data: &Matrix<N, U3, U1, S>) -> Velocity2<N> where
    S: Storage<N, U3, U1>, 
[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]) -> Velocity2<N>[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: &Matrix<N, U2, U1, <DefaultAllocator as Allocator<N, U2, U1>>::Buffer>
) -> Velocity2<N>
[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: &Rotation<N, U2>) -> Velocity2<N>[src]

Rotate each component of self by rot.

pub fn transformed(
    &self,
    iso: &Isometry<N, U2, Unit<Complex<N>>>
) -> Velocity2<N>
[src]

Transform each component of self by iso.

Trait Implementations

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

type Output = Velocity2<N>

The resulting type after applying the + operator.

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

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

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

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

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

type Output = Velocity2<N>

The resulting type after applying the * operator.

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

type Output = Force2<N>

The resulting type after applying the * operator.

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

type Output = Velocity2<N>

The resulting type after applying the - operator.

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

Auto Trait Implementations

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

impl<N> Send for Velocity2<N>

impl<N> Sync for Velocity2<N>

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

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

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, 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: 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<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<T> UserData for T where
    T: Clone + Any + Send + Sync
[src]

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