[][src]Struct nphysics3d::force_generator::ConstantAcceleration

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

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

Methods

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

pub fn new(linear_acc: Vector<N>, angular_acc: Vector<N>) -> Self[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: RealField, Handle: BodyHandle> ForceGenerator<N, Handle> for ConstantAcceleration<N, Handle>[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> 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> 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<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>,