hkpLimitedHingeConstraintData.inl
上传用户:yisoukefu
上传日期:2020-08-09
资源大小:39506k
文件大小:3k
源码类别:

其他游戏

开发平台:

Visual C++

  1. /* 
  2.  * 
  3.  * Confidential Information of Telekinesys Research Limited (t/a Havok). Not for disclosure or distribution without Havok's
  4.  * prior written consent. This software contains code, techniques and know-how which is confidential and proprietary to Havok.
  5.  * Level 2 and Level 3 source code contains trade secrets of Havok. Havok Software (C) Copyright 1999-2009 Telekinesys Research Limited t/a Havok. All Rights Reserved. Use of this software is subject to the terms of an end user license agreement.
  6.  * 
  7.  */
  8. //
  9. // hkLimitedHinge set and get methods.
  10. //
  11. inline void hkpLimitedHingeConstraintData::setMaxAngularLimit(hkReal rad)
  12. {
  13. m_atoms.m_angLimit.m_maxAngle = rad;
  14. }
  15. inline void hkpLimitedHingeConstraintData::setMinAngularLimit(hkReal rad)
  16. {
  17. m_atoms.m_angLimit.m_minAngle = rad;
  18. }
  19. inline hkReal hkpLimitedHingeConstraintData::getMaxAngularLimit() const
  20. {
  21. return m_atoms.m_angLimit.m_maxAngle;
  22. }
  23. inline hkReal hkpLimitedHingeConstraintData::getMinAngularLimit() const
  24. {
  25. return m_atoms.m_angLimit.m_minAngle;
  26. }
  27. inline void hkpLimitedHingeConstraintData::setMaxFrictionTorque(hkReal tmag)
  28. {
  29. m_atoms.m_angFriction.m_maxFrictionTorque = tmag;
  30. }
  31. inline hkReal hkpLimitedHingeConstraintData::getMaxFrictionTorque() const
  32. {
  33. return m_atoms.m_angFriction.m_maxFrictionTorque;
  34. }
  35. inline void hkpLimitedHingeConstraintData::setAngularLimitsTauFactor( hkReal mag )
  36. {
  37. m_atoms.m_angLimit.m_angularLimitsTauFactor = mag;
  38. }
  39. inline hkReal hkpLimitedHingeConstraintData::getAngularLimitsTauFactor() const
  40. {
  41. return m_atoms.m_angLimit.m_angularLimitsTauFactor;
  42. }
  43. inline void hkpLimitedHingeConstraintData::disableLimits()
  44. {
  45. m_atoms.m_angLimit.m_minAngle = -1e14f;
  46. m_atoms.m_angLimit.m_maxAngle =  1e14f;
  47. }
  48. inline hkReal hkpLimitedHingeConstraintData::Runtime::getCurrentPos() const
  49. {
  50. return -1.0f * m_solverResults[SOLVER_RESULT_LIMIT].m_internalSolverData;
  51. }
  52. inline hkpConstraintMotor* hkpLimitedHingeConstraintData::getMotor() const
  53. {
  54. return m_atoms.m_angMotor.m_motor;
  55. }
  56. inline hkBool hkpLimitedHingeConstraintData::isMotorActive() const
  57. {
  58. return m_atoms.m_angMotor.m_isEnabled;
  59. }
  60. inline void hkpLimitedHingeConstraintData::setMotorTargetAngle( hkReal angle )
  61. {
  62. m_atoms.m_angMotor.m_targetAngle = angle;
  63. }
  64. inline hkReal hkpLimitedHingeConstraintData::getMotorTargetAngle() const
  65. {
  66. return m_atoms.m_angMotor.m_targetAngle;
  67. }
  68. /*
  69. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  70. * Confidential Information of Havok.  (C) Copyright 1999-2009
  71. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  72. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  73. * rights, and intellectual property rights in the Havok software remain in
  74. * Havok and/or its suppliers.
  75. * Use of this software for evaluation purposes is subject to and indicates
  76. * acceptance of the End User licence Agreement for this product. A copy of
  77. * the license is included with this software and is also available at www.havok.com/tryhavok.
  78. */