HomeSort by relevance Sort by last modified time
    Searched refs:hingeData (Results 1 - 2 of 2) sorted by null

  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletDynamics/ConstraintSolver/
btHingeConstraint.h 432 btHingeConstraintData* hingeData = (btHingeConstraintData*)dataBuffer;
433 btTypedConstraint::serialize(&hingeData->m_typeConstraintData,serializer);
435 m_rbAFrame.serialize(hingeData->m_rbAFrame);
436 m_rbBFrame.serialize(hingeData->m_rbBFrame);
438 hingeData->m_angularOnly = m_angularOnly;
439 hingeData->m_enableAngularMotor = m_enableAngularMotor;
440 hingeData->m_maxMotorImpulse = float(m_maxMotorImpulse);
441 hingeData->m_motorTargetVelocity = float(m_motorTargetVelocity);
442 hingeData->m_useReferenceFrameA = m_useReferenceFrameA;
444 hingeData->m_lowerLimit = float(m_limit.getLow())
    [all...]
  /external/libgdx/extensions/gdx-bullet/jni/src/extras/Serialize/BulletWorldImporter/
btWorldImporter.cpp 559 btHingeConstraintDoubleData* hingeData = (btHingeConstraintDoubleData*)constraintData;
563 rbAFrame.deSerializeDouble(hingeData->m_rbAFrame);
564 rbBFrame.deSerializeDouble(hingeData->m_rbBFrame);
565 hinge = createHingeConstraint(*rbA,*rbB,rbAFrame,rbBFrame,hingeData->m_useReferenceFrameA!=0);
569 rbAFrame.deSerializeDouble(hingeData->m_rbAFrame);
570 hinge = createHingeConstraint(*rbA,rbAFrame,hingeData->m_useReferenceFrameA!=0);
572 if (hingeData->m_enableAngularMotor)
574 hinge->enableAngularMotor(true,(btScalar)hingeData->m_motorTargetVelocity,(btScalar)hingeData->m_maxMotorImpulse);
576 hinge->setAngularOnly(hingeData->m_angularOnly!=0)
    [all...]

Completed in 209 milliseconds