[][src]Struct nphysics3d::joint::JointMotor

pub struct JointMotor<V, N: RealField> {
    pub desired_velocity: V,
    pub max_force: N,
    pub enabled: bool,
}

Description of a motor applied to a joint.

Fields

desired_velocity: V

The velocity the motor will attempt to reach.

max_force: N

The maximum force deliverable by the motor.

enabled: bool

Whether or not the motor is active.

Methods

impl<V: Zero, N: RealField> JointMotor<V, N>[src]

pub fn new() -> Self[src]

Create a disable motor with zero desired velocity.

The max force is initialized to a virtually infinite value, i.e., N::max_value().

pub fn impulse_limits(&self) -> ImpulseLimits<N>[src]

The limits of the impulse applicable by the motor on the body parts.

Trait Implementations

impl<V: Clone, N: Clone + RealField> Clone for JointMotor<V, N>[src]

impl<V: Copy, N: Copy + RealField> Copy for JointMotor<V, N>[src]

impl<V: Debug, N: Debug + RealField> Debug for JointMotor<V, N>[src]

impl<V: Zero, N: RealField> Default for JointMotor<V, N>[src]

Auto Trait Implementations

impl<V, N> RefUnwindSafe for JointMotor<V, N> where
    N: RefUnwindSafe,
    V: RefUnwindSafe

impl<V, N> Send for JointMotor<V, N> where
    V: Send

impl<V, N> Sync for JointMotor<V, N> where
    V: Sync

impl<V, N> Unpin for JointMotor<V, N> where
    N: Unpin,
    V: Unpin

impl<V, N> UnwindSafe for JointMotor<V, N> where
    N: UnwindSafe,
    V: 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<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>,