[][src]Struct box2d_rs::joints::b2_rope_joint::B2ropeJoint

pub struct B2ropeJoint<D: UserDataType> { /* fields omitted */ }

A rope joint enforces a maximum distance between two points on two bodies. It has no other effect. Warning: if you attempt to change the maximum length during the simulation you will get some non-physical behavior. A model that would allow you to dynamically modify the length would have some sponginess, so i chose not to implement it that way. See B2distanceJoint if you want to dynamically control length.

Implementations

impl<D: UserDataType> B2ropeJoint<D>[src]

pub fn get_local_anchor_a(&self) -> B2vec2[src]

The local anchor point relative to body_a's origin.

pub fn get_local_anchor_b(&self) -> B2vec2[src]

The local anchor point relative to body_b's origin.

pub fn set_max_length(&mut self, length: f32)[src]

Set/Get the maximum length of the rope.

pub fn get_max_length(&self) -> f32[src]

pub fn get_length(&self) -> f32[src]

Trait Implementations

impl<D: UserDataType> B2jointTraitDyn<D> for B2ropeJoint<D>[src]

pub fn get_reaction_force(&self, inv_dt: f32) -> B2vec2[src]

Get the reaction force given the inverse time step. Unit is n.

pub fn dump(&self)[src]

dump joint to dmLog

impl<D: UserDataType> ToDerivedJoint<D> for B2ropeJoint<D>[src]

Auto Trait Implementations

impl<D> !RefUnwindSafe for B2ropeJoint<D>

impl<D> !Send for B2ropeJoint<D>

impl<D> !Sync for B2ropeJoint<D>

impl<D> Unpin for B2ropeJoint<D> where
    <D as UserDataType>::Joint: Unpin

impl<D> !UnwindSafe for B2ropeJoint<D>

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> From<T> for T[src]

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

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.