hkp26Dop.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 void hkp26Dop::expand(const hkReal tolerance)
  9. {
  10. hkReal* v = &m_lx;
  11. for (int i=0; i < 26;)
  12. {
  13. v[i++] -= tolerance; // sub from low
  14. v[i++] += tolerance; // add to high
  15. }
  16. }
  17. inline hkReal hkp26Dop::getLow(int i ) const
  18. {
  19. return (&m_lx)[i*2];
  20. }
  21. inline hkReal hkp26Dop::getHigh(int i ) const
  22. {
  23. return (&m_hx)[i*2];
  24. }
  25. inline void hkp26Dop::setLow(int i, hkReal l)
  26. {
  27. (&m_lx)[i<<1] = l;
  28. }
  29. inline void hkp26Dop::setHigh(int i, hkReal h)
  30. {
  31. (&m_hx)[i<<1] = h;
  32. }
  33. inline hkReal hkp26Dop::getLowDistance(int i ) const
  34. {
  35. if (i < 3)
  36. {
  37. return (&m_lx)[i<<1];
  38. }
  39. else if (i < 9)
  40. {
  41. return (&m_lx)[i<<1] / ROOT2;
  42. }
  43. else return (&m_lx)[i<<1] / ROOT3;
  44. }
  45. inline hkReal hkp26Dop::getHighDistance(int i ) const
  46. {
  47. if (i < 3)
  48. {
  49. return (&m_hx)[i<<1];
  50. }
  51. else if (i < 9)
  52. {
  53. return (&m_hx)[i<<1] / ROOT2;
  54. }
  55. else return (&m_hx)[i<<1] / ROOT3;
  56. }
  57. /*
  58. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  59. * Confidential Information of Havok.  (C) Copyright 1999-2009
  60. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  61. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  62. * rights, and intellectual property rights in the Havok software remain in
  63. * Havok and/or its suppliers.
  64. * Use of this software for evaluation purposes is subject to and indicates
  65. * acceptance of the End User licence Agreement for this product. A copy of
  66. * the license is included with this software and is also available at www.havok.com/tryhavok.
  67. */