Searched defs:mot_fact (Results 1 - 4 of 4) sorted by relevance
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletDynamics/ConstraintSolver/ |
H A D | btSliderConstraint.cpp | 540 btScalar mot_fact = getMotorFactor(m_linPos, m_lowerLinLimit, m_upperLinLimit, tag_vel, info->fps * currERP); local 541 info->m_constraintError[srow] -= signFact * mot_fact * getTargetLinMotorVelocity(); 642 btScalar mot_fact = getMotorFactor(m_angPos, m_lowerAngLimit, m_upperAngLimit, getTargetAngMotorVelocity(), info->fps * currERP); local 643 info->m_constraintError[srow] = mot_fact * getTargetAngMotorVelocity();
|
H A D | btGeneric6DofConstraint.cpp | 852 btScalar mot_fact = getMotorFactor( limot->m_currentPosition, local 857 info->m_constraintError[srow] += mot_fact * limot->m_targetVelocity;
|
H A D | btGeneric6DofSpring2Constraint.cpp | 716 btScalar mot_fact = getMotorFactor(limot->m_currentPosition, local 721 info->m_constraintError[srow] = mot_fact * limot->m_targetVelocity; 735 btScalar mot_fact; local 750 mot_fact = getMotorFactor(limot->m_currentPosition, lowLimit, hiLimit, tag_vel, info->fps * limot->m_motorERP); 754 mot_fact = 0; 756 info->m_constraintError[srow] = mot_fact * targetvelocity * (rotational ? -1 : 1);
|
H A D | btHingeConstraint.cpp | 590 btScalar mot_fact = getMotorFactor(m_hingeAngle, lostop, histop, m_motorTargetVelocity, info->fps * currERP); local 591 info->m_constraintError[srow] += mot_fact * m_motorTargetVelocity * m_referenceSign; 985 btScalar mot_fact = getMotorFactor(m_hingeAngle, lostop, histop, m_motorTargetVelocity, info->fps * currERP); local 986 info->m_constraintError[srow] += mot_fact * m_motorTargetVelocity * m_referenceSign;
|
Completed in 58 milliseconds