Struct nphysics3d::joint::RevoluteJoint[][src]

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

A unit joint that allows only one relative rotational degree of freedom between two multibody links.

Methods

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

Create a new revolute joint with an axis and an initial angle.

The axis along which the rotation can happen is expressed in the local coordinate system of the attached multibody links.

The axis of the rotational degree of freedom.

The angle of rotation.

The rotation from an attached multibody link to its dependent.

The jacobian of this joint expressed in the local coordinate frame of the joint.

The time-derivative of the jacobian of this joint expressed in the local coordinate frame of the joint.

The velocity-derivative of the time-derivative of the jacobian of this joint expressed in the local coordinate frame of the joint.

The lower limit of the rotation angle.

The upper limit of the rotation angle.

Disable the lower limit of the rotation angle.

Disable the upper limit of the rotation angle.

Enable and set the lower limit of the rotation angle.

Enable and set the upper limit of the rotation angle.

Return true if the angular motor of this joint is enabled.

Enable the angular motor of this joint.

Disable the angular motor of this joint.

The desired angular velocity of the joint motor.

Set the desired angular velocity of the joint motor.

The maximum torque that can be delivered by the joint motor.

Set the maximum torque that can be delivered by the joint motor.

Trait Implementations

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

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

Formats the value using the given formatter. Read more

impl<N: Real> Joint<N> for RevoluteJoint<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.

Fill out with the non-zero entries of a damping that can be applied by default to ensure a good stability of the 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

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.

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

impl<N: Real> UnitJoint<N> for RevoluteJoint<N>
[src]

The generalized coordinate of the unit joint.

The motor applied to the degree of freedom of the unit joitn.

The lower limit, if any, set to the generalized coordinate of this unit joint.

The upper limit, if any, set to the generalized coordinate of this unit joint.

Auto Trait Implementations

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

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