hkpShape.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. hkpShape::hkpShape( hkpShapeType type )
  9. {
  10. m_userData = 0;
  11. m_type = type;
  12. }
  13. HK_CLASSALIGN16(class) hkAlignedShape: public hkpShape{
  14. hkAlignedShape();
  15. };
  16. hkpShapeType hkpShape::getType() const
  17. {
  18. return static_cast<const hkAlignedShape*>(this)->m_type;
  19. }
  20. inline hkUlong hkpShape::getUserData() const
  21. {
  22. return m_userData;
  23. }
  24. inline void hkpShape::setUserData( hkUlong data )
  25. {
  26. m_userData = data;
  27. }
  28. void hkpShape::getAabb( const hkTransform& localToWorld, hkReal tolerance, hkAabb& out ) const
  29. {
  30. getAabbImpl( localToWorld, tolerance, out );
  31. }
  32. hkBool hkpShape::castRay( const hkpShapeRayCastInput& input, hkpShapeRayCastOutput& output ) const
  33. {
  34. return castRayImpl( input, output );
  35. }
  36. void hkpShape::castRayWithCollector( const hkpShapeRayCastInput& input, const hkpCdBody& cdBody, hkpRayHitCollector& collector ) const
  37. {
  38. return castRayWithCollectorImpl( input, cdBody, collector );
  39. }
  40. hkVector4Comparison hkpShape::castRayBundle( const hkpShapeRayBundleCastInput& input, hkpShapeRayBundleCastOutput& output ) const
  41. {
  42. //HK_WARN(0x0, "castRayBundle called without a mask. This will probably cause more narrowphase checks than you intended.");
  43. //HK_ASSERT2(0x0, false, "castRayBundle called without a mask. This will probably cause more narrowphase checks than you intended.");
  44. hkVector4Comparison mask; mask.set(hkVector4Comparison::MASK_XYZW);
  45. return castRayBundleImpl( input, output, mask );
  46. }
  47. hkVector4Comparison hkpShape::castRayBundle( const hkpShapeRayBundleCastInput& input, hkpShapeRayBundleCastOutput& output, hkVector4ComparisonParameter mask ) const
  48. {
  49. return castRayBundleImpl( input, output, mask );
  50. }
  51. /*
  52. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  53. * Confidential Information of Havok.  (C) Copyright 1999-2009
  54. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  55. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  56. * rights, and intellectual property rights in the Havok software remain in
  57. * Havok and/or its suppliers.
  58. * Use of this software for evaluation purposes is subject to and indicates
  59. * acceptance of the End User licence Agreement for this product. A copy of
  60. * the license is included with this software and is also available at www.havok.com/tryhavok.
  61. */