C# Класс BEPUphysics.Constraints.TwoEntity.Joints.TwistJoint

Prevents the connected entities from twisting relative to each other. Acts like the angular part of a universal joint.
Наследование: BEPUphysics.Constraints.TwoEntity.Joints.Joint, I1DImpulseConstraintWithError, I1DJacobianConstraint
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
ExclusiveUpdate ( ) : void

Performs any pre-solve iteration work that needs exclusive access to the members of the solver updateable. Usually, this is used for applying warmstarting impulses.

GetAngularJacobianA ( Vector3 &jacobian ) : void

Gets the angular jacobian entry for the first connected entity.

GetAngularJacobianB ( Vector3 &jacobian ) : void

Gets the angular jacobian entry for the second connected entity.

GetLinearJacobianA ( Vector3 &jacobian ) : void

Gets the linear jacobian entry for the first connected entity.

GetLinearJacobianB ( Vector3 &jacobian ) : void

Gets the linear jacobian entry for the second connected entity.

GetMassMatrix ( float &outputMassMatrix ) : void

Gets the mass matrix of the constraint.

SolveIteration ( ) : float

Solves for velocity.

TwistJoint ( ) : System

Constructs a new constraint which prevents the connected entities from twisting relative to each other. To finish the initialization, specify the connections (ConnectionA and ConnectionB) as well as the WorldAxisA and WorldAxisB (or their entity-local versions). This constructor sets the constraint's IsActive property to false by default.

TwistJoint ( Entity connectionA, Entity connectionB, Vector3 axisA, Vector3 axisB ) : System

Constructs a new constraint which prevents the connected entities from twisting relative to each other.

Update ( float dt ) : void

Do any necessary computations to prepare the constraint for this frame.

Приватные методы

Метод Описание
Initialize ( ) : void

Описание методов

ExclusiveUpdate() публичный Метод

Performs any pre-solve iteration work that needs exclusive access to the members of the solver updateable. Usually, this is used for applying warmstarting impulses.
public ExclusiveUpdate ( ) : void
Результат void

GetAngularJacobianA() публичный Метод

Gets the angular jacobian entry for the first connected entity.
public GetAngularJacobianA ( Vector3 &jacobian ) : void
jacobian Vector3 Angular jacobian entry for the first connected entity.
Результат void

GetAngularJacobianB() публичный Метод

Gets the angular jacobian entry for the second connected entity.
public GetAngularJacobianB ( Vector3 &jacobian ) : void
jacobian Vector3 Angular jacobian entry for the second connected entity.
Результат void

GetLinearJacobianA() публичный Метод

Gets the linear jacobian entry for the first connected entity.
public GetLinearJacobianA ( Vector3 &jacobian ) : void
jacobian Vector3 Linear jacobian entry for the first connected entity.
Результат void

GetLinearJacobianB() публичный Метод

Gets the linear jacobian entry for the second connected entity.
public GetLinearJacobianB ( Vector3 &jacobian ) : void
jacobian Vector3 Linear jacobian entry for the second connected entity.
Результат void

GetMassMatrix() публичный Метод

Gets the mass matrix of the constraint.
public GetMassMatrix ( float &outputMassMatrix ) : void
outputMassMatrix float Constraint's mass matrix.
Результат void

SolveIteration() публичный Метод

Solves for velocity.
public SolveIteration ( ) : float
Результат float

TwistJoint() публичный Метод

Constructs a new constraint which prevents the connected entities from twisting relative to each other. To finish the initialization, specify the connections (ConnectionA and ConnectionB) as well as the WorldAxisA and WorldAxisB (or their entity-local versions). This constructor sets the constraint's IsActive property to false by default.
public TwistJoint ( ) : System
Результат System

TwistJoint() публичный Метод

Constructs a new constraint which prevents the connected entities from twisting relative to each other.
public TwistJoint ( Entity connectionA, Entity connectionB, Vector3 axisA, Vector3 axisB ) : System
connectionA Entity First connection of the pair.
connectionB Entity Second connection of the pair.
axisA Vector3 Twist axis attached to the first connected entity.
axisB Vector3 Twist axis attached to the second connected entity.
Результат System

Update() публичный Метод

Do any necessary computations to prepare the constraint for this frame.
public Update ( float dt ) : void
dt float Simulation step length.
Результат void