Struct nphysics3d::joint::FreeJoint[][src]

pub struct FreeJoint<N: Real> { /* fields omitted */ }

A joint that allows all the relative degrees of freedom between two multibody links.

This joint can only be added between a Ground body (as parent) and any other body.

Methods

impl<N: Real> FreeJoint<N>
[src]

Creates a free joint with the given initial position of the descendent, relative to the ground.

Trait Implementations

impl<N: Copy + Real> Copy for FreeJoint<N>
[src]

impl<N: Clone + Real> Clone for FreeJoint<N>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<N: Debug + Real> Debug for FreeJoint<N>
[src]

Formats the value using the given formatter. Read more

impl<N: Real> Joint<N> for FreeJoint<N>
[src]

The number of degrees of freedom allowed by the joint.

The position of the multibody link containing this joint relative to its parent.

Update the jacobians of this joint.

Sets in out the non-zero entries of the joint jacobian transformed by transform.

Sets in out the non-zero entries of the time-derivative of the joint jacobian transformed by transform.

Sets in out the non-zero entries of the velocity-derivative of the time-derivative of the joint jacobian transformed by transform.

Integrate the position of this joint.

Apply a displacement to the joint.

Multiply the joint jacobian by generalized velocities to obtain the relative velocity of the multibody link containing this joint. Read more

Multiply the joint jacobian by generalized accelerations to obtain the relative acceleration of the multibody link containing this joint. Read more

Fill out with the non-zero entries of a damping that can be applied by default to ensure a good stability of the joint.

The maximum number of impulses needed by this joints for its constraints. Read more

Maximum number of velocity constrains that can be generated by this joint.

Initialize and generate velocity constraints to enforce, e.g., joint limits and motors.

The maximum number of non-linear position constraints that can be generated by this joint.

Initialize and generate the i-th position constraints to enforce, e.g., joint limits.

Auto Trait Implementations

impl<N> Send for FreeJoint<N>

impl<N> Sync for FreeJoint<N>