[][src]Struct oxygengine_physics_2d::prelude::force_generator::ConstantAcceleration

pub struct ConstantAcceleration<N, Handle> where
    Handle: BodyHandle,
    N: RealField
{ /* fields omitted */ }

Force generator adding a constant acceleration at the center of mass of a set of body parts.

Implementations

impl<N, Handle> ConstantAcceleration<N, Handle> where
    Handle: BodyHandle,
    N: RealField
[src]

pub fn new(
    linear_acc: Matrix<N, U2, U1, <DefaultAllocator as Allocator<N, U2, U1>>::Buffer>,
    angular_acc: N
) -> ConstantAcceleration<N, Handle>
[src]

Adds a new constant acceleration generator.

The acceleration is expressed in world-space.

pub fn add_body_part(&mut self, body: BodyPartHandle<Handle>)[src]

Add a body part to be affected by this force generator.

Trait Implementations

impl<N, Handle> ForceGenerator<N, Handle> for ConstantAcceleration<N, Handle> where
    Handle: BodyHandle,
    N: RealField
[src]

Auto Trait Implementations

impl<N, Handle> RefUnwindSafe for ConstantAcceleration<N, Handle> where
    Handle: RefUnwindSafe,
    N: RefUnwindSafe + Scalar

impl<N, Handle> Send for ConstantAcceleration<N, Handle> where
    N: Scalar

impl<N, Handle> Sync for ConstantAcceleration<N, Handle> where
    N: Scalar

impl<N, Handle> Unpin for ConstantAcceleration<N, Handle> where
    Handle: Unpin,
    N: Scalar + Unpin

impl<N, Handle> UnwindSafe for ConstantAcceleration<N, Handle> where
    Handle: UnwindSafe,
    N: Scalar + 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> Downcast for T where
    T: Any

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

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>,