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

其他游戏

开发平台:

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. inline const hkVector4& hkpSpringAction::getPositionAinA()
  9. {
  10. return m_positionAinA;
  11. }
  12. inline const hkVector4& hkpSpringAction::getPositionBinB()
  13. {
  14. return m_positionBinB;
  15. }
  16. inline void hkpSpringAction::setStrength(hkReal str)
  17. {
  18.   m_strength = str;
  19. }
  20. inline hkReal hkpSpringAction::getStrength()
  21. {
  22. return m_strength;
  23. }
  24. inline void hkpSpringAction::setDamping(hkReal damp)
  25. {
  26.   m_damping = damp;
  27. }
  28. inline hkReal hkpSpringAction::getDamping()
  29. {
  30. return m_damping;
  31. }
  32. inline void hkpSpringAction::setRestLength(hkReal restLength)
  33. {
  34.   m_restLength = restLength;
  35. }
  36. inline hkReal hkpSpringAction::getRestLength()
  37. {
  38. return m_restLength;
  39. }
  40. inline void hkpSpringAction::setOnCompression(hkBool onCompression)
  41. {
  42.   m_onCompression = onCompression;
  43. }
  44. inline hkBool hkpSpringAction::getOnCompression()
  45. {
  46. return m_onCompression;
  47. }
  48. inline void hkpSpringAction::setOnExtension(hkBool onExtension)
  49. {
  50.   m_onExtension = onExtension;
  51. }
  52. inline hkBool hkpSpringAction::getOnExtension()
  53. {
  54. return m_onExtension;
  55. }
  56. inline const hkVector4& hkpSpringAction::getLastForce() 
  57. return m_lastForce; 
  58. }
  59. /*
  60. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  61. * Confidential Information of Havok.  (C) Copyright 1999-2009
  62. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  63. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  64. * rights, and intellectual property rights in the Havok software remain in
  65. * Havok and/or its suppliers.
  66. * Use of this software for evaluation purposes is subject to and indicates
  67. * acceptance of the End User licence Agreement for this product. A copy of
  68. * the license is included with this software and is also available at www.havok.com/tryhavok.
  69. */