[][src]Struct nphysics3d::joint::PrismaticConstraint

pub struct PrismaticConstraint<N: RealField> { /* fields omitted */ }

A constraint that remove all be one translational degrees of freedom.

Methods

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

pub fn new(
    b1: BodyPartHandle,
    b2: BodyPartHandle,
    anchor1: Point<N>,
    axis1: Unit<Vector<N>>,
    anchor2: Point<N>
) -> Self
[src]

Create a new prismatic constraint that ensures the relative motion between the two body parts are restricted to a single translation along the axis1 axis (expressed in the local coordinates frame of b1).

pub fn min_offset(&self) -> Option<N>[src]

The lower limit, if any, of the relative translation (along the joint axis) of the body parts attached to this joint.

pub fn max_offset(&self) -> Option<N>[src]

The upper limit, if any, of the relative translation (along the joint axis) of the body parts attached to this joint.

pub fn disable_min_offset(&mut self)[src]

Disable the lower limit of the relative translational motion along the joint axis.

pub fn disable_max_offset(&mut self)[src]

Disable the upper limit of the relative translational motion along the joint axis.

pub fn enable_min_offset(&mut self, limit: N)[src]

Enables the lower limit of the relative translational motion along the joint axis.

pub fn enable_max_offset(&mut self, limit: N)[src]

Disable the lower limit of the relative translational motion along the joint axis.

Trait Implementations

impl<N: RealField> JointConstraint<N> for PrismaticConstraint<N>[src]

fn is_active(&self, bodies: &BodySet<N>) -> bool[src]

Return true if the constraint is active. Read more

impl<N: RealField> NonlinearConstraintGenerator<N> for PrismaticConstraint<N>[src]

Auto Trait Implementations

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

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

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto 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> Downcast for T where
    T: Any
[src]

impl<SS, SP> SupersetOf for SP where
    SS: SubsetOf<SP>, 
[src]

impl<T> Same for T

type Output = T

Should always be Self