hkpBoxBoxManifold.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 int hkpBoxBoxManifold::getNumPoints()
  9. {
  10. return m_numPoints;
  11. }
  12. inline hkpFeatureContactPoint& hkpBoxBoxManifold::operator[]( int index )
  13. {
  14. return m_contactPoints[index];
  15. }
  16. inline hkBool hkpBoxBoxManifold::findInManifold( const hkpFeatureContactPoint& fcp )
  17. {
  18. for (int i = m_numPoints-1; i>=0; i--)
  19. {
  20. if ( m_contactPoints[i].m_featureIdA == fcp.m_featureIdA && m_contactPoints[i].m_featureIdB == fcp.m_featureIdB )
  21. {
  22. return true;
  23. }
  24. }
  25. return false;
  26. }
  27. inline hkBool hkpBoxBoxManifold::isComplete()
  28. {
  29. return m_isComplete; 
  30. }
  31. inline void hkpBoxBoxManifold::setComplete( hkBool complete )
  32. {
  33. m_isComplete = complete;
  34. }
  35. inline hkBool hkpBoxBoxManifold::hasNoPointsLeft()
  36. {
  37. return (m_numPoints >= HK_BOXBOX_MANIFOLD_MAX_POINTS); 
  38. }
  39. /*
  40. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  41. * Confidential Information of Havok.  (C) Copyright 1999-2009
  42. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  43. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  44. * rights, and intellectual property rights in the Havok software remain in
  45. * Havok and/or its suppliers.
  46. * Use of this software for evaluation purposes is subject to and indicates
  47. * acceptance of the End User licence Agreement for this product. A copy of
  48. * the license is included with this software and is also available at www.havok.com/tryhavok.
  49. */