Struct nphysics3d::joint::HelicalJoint[][src]

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

A joint that allows one degree of freedom between two multibody links.

The degree of freedom is the combination of a rotation and a translation along the same axis. Both rotational and translational motions are coupled to generate a screw motion.

Methods

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

Create an helical joint with the given axis and initial angle.

The pitch controls how much translation is generated for how much rotation. In particular, the translational displacement along axis is given by angle * pitch.

The translational displacement along the joint axis.

The rotational displacement along the joint axis.

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

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 HelicalJoint<N>
[src]

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

Formats the value using the given formatter. Read more

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

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.

Integrate the position of this joint.

Apply a displacement to the joint.

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 HelicalJoint<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 HelicalJoint<N> where
    N: Scalar

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