[][src]Struct physme::dim2::Joint

pub struct Joint<B: JointBehaviour> { /* fields omitted */ }

Allows one RigidBody to be anchored at another one in a pre-defined way, along with a local offset and angle.

Implementations

impl Joint<SpringJointBehaviour>[src]

pub fn with_rigidness(self, rigidness: f32) -> Self[src]

Add a rigidness value to an owned Joint.

impl<B: JointBehaviour + Default> Joint<B>[src]

pub fn new(body1: Entity, body2: Entity) -> Self[src]

Create a new joint, where the second body shall be anchored at the first body.

impl<B: JointBehaviour> Joint<B>[src]

pub fn with_behaviour(body1: Entity, body2: Entity, behaviour: B) -> Self[src]

Create a new joint, where the second body shall be anchored at the first body.

pub fn with_offset(self, offset: Vec2) -> Self[src]

Add an offset to an owned Joint.

pub fn with_angle(self, angle: f32) -> Self[src]

Add an angle to an owned Joint.

Trait Implementations

impl<B: Clone + JointBehaviour> Clone for Joint<B>[src]

impl<B: Copy + JointBehaviour> Copy for Joint<B>[src]

impl<B: Debug + JointBehaviour> Debug for Joint<B>[src]

impl<B: PartialEq + JointBehaviour> PartialEq<Joint<B>> for Joint<B>[src]

impl<B: JointBehaviour> StructuralPartialEq for Joint<B>[src]

Auto Trait Implementations

impl<B> RefUnwindSafe for Joint<B> where
    B: RefUnwindSafe

impl<B> Send for Joint<B>

impl<B> Sync for Joint<B>

impl<B> Unpin for Joint<B> where
    B: Unpin

impl<B> UnwindSafe for Joint<B> where
    B: 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> CloneAny for T where
    T: Clone + Any

impl<T> Component for T where
    T: 'static + Send + Sync

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

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

impl<T> Resource for T where
    T: 'static + Send + Sync

impl<T> Same<T> for T

type Output = T

Should always be Self

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