hkp26Dop.h
上传用户: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. #ifndef HK_COLLIDE2_26DOP_H
  9. #define HK_COLLIDE2_26DOP_H
  10. #include <Common/Base/hkBase.h>
  11. ///
  12. /// A 26 K-Dop. It stores the distance to each plane without the div by root2 and root3 etc.
  13. /// so call getLowDistance(i) and getHighDistance(i) to get the actual distance to the planes on the axis i.
  14. ///
  15. class hkp26Dop
  16. {
  17. public:
  18. HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR(HK_MEMORY_CLASS_CDINFO, hkp26Dop);
  19. /// Expand (extend) the extents by the given amount, by just adding the given value to each of the extents
  20. inline void expand(const hkReal tolerance);
  21. /// Translate the k-dop.
  22. void translate( const hkVector4& t );
  23. inline hkReal getLow(int i ) const;
  24. inline hkReal getHigh(int i ) const;
  25. inline void setLow(int i,hkReal l );
  26. inline void setHigh(int i, hkReal h);
  27. inline hkReal getLowDistance(int i ) const;
  28. inline hkReal getHighDistance(int i ) const;
  29. void getPlaneEquations( const hkTransform& dopToWorld, hkVector4* planeEquationsOut );
  30. static inline const hkVector4& getAxis(int i);
  31. enum DOP_AXIS
  32. {
  33. AXIS_X     = 0,
  34. AXIS_Y     = 1,
  35. AXIS_Z     = 2,
  36. AXIS_YZ    = 3,
  37. AXIS_YMZ   = 4,
  38. AXIS_XZ    = 5,
  39. AXIS_XMZ   = 6,
  40. AXIS_XY    = 7,
  41. AXIS_XMY   = 8,
  42. AXIS_XYZ   = 9,
  43. AXIS_XYMZ  = 10,
  44. AXIS_XMYZ  = 11,
  45. AXIS_XMYMZ = 12
  46. };
  47. public:
  48. // :DON'T CHANGE ORDER: Indexed directly by the set and get (i) methods.
  49. // The 6DOP (aabb for the obb)
  50. hkReal m_lx, m_hx;
  51. hkReal m_ly, m_hy;
  52. hkReal m_lz, m_hz;
  53. // The remaining 20 extents of the 26DOP
  54. hkReal m_lyz,    m_hyz;   //YZ
  55. hkReal m_lymz,   m_hymz;  //YMZ
  56. hkReal m_lxz,    m_hxz;   //XZ
  57. hkReal m_lxmz,   m_hxmz;  //XMZ
  58. hkReal m_lxy,    m_hxy;   //XY
  59. hkReal m_lxmy,   m_hxmy;  //XMY
  60. hkReal m_lxyz,   m_hxyz;  //XYZ
  61. hkReal m_lxymz,  m_hxymz; //XYMZ
  62. hkReal m_lxmyz,  m_hxmyz; //XMYZ
  63. hkReal m_lxmymz, m_hxmymz;//XMYMZ
  64. static const hkReal ROOT2;
  65. static const hkReal ROOT3;
  66. };
  67. #include <Physics/Internal/Collide/Mopp/Machine/hkp26Dop.inl>
  68. #endif // HK_COLLIDE2_26DOP_H
  69. /*
  70. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  71. * Confidential Information of Havok.  (C) Copyright 1999-2009
  72. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  73. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  74. * rights, and intellectual property rights in the Havok software remain in
  75. * Havok and/or its suppliers.
  76. * Use of this software for evaluation purposes is subject to and indicates
  77. * acceptance of the End User licence Agreement for this product. A copy of
  78. * the license is included with this software and is also available at www.havok.com/tryhavok.
  79. */