hkpShapeRayBundleCastInput.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_SHAPE_RAY_BUNDLE_CAST_INPUT
  9. #define HK_SHAPE_RAY_BUNDLE_CAST_INPUT
  10. #include <Common/Base/hkBase.h>
  11. class hkpRayShapeCollectionFilter;
  12. /// This is the input structure you need to fill out in order to call any hkpShape::castRay() function
  13. struct hkpShapeRayBundleCastInput
  14. {
  15. HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR( HK_MEMORY_CLASS_COLLIDE, hkpShapeRayBundleCastInput );
  16. HK_DECLARE_REFLECTION();
  17. /// The constructor initializes the filter pointer to HK_NULL, which means that no shape collection filtering
  18. /// will be performed by default.
  19. inline hkpShapeRayBundleCastInput();
  20. /// The start positions of 4 rays transposed
  21. hkVector4 m_from[3];
  22. /// The end positions of 4 rays transposed
  23. hkVector4 m_to[3];
  24. /// Filter information associated with this ray.
  25. /// You only need to set this if you supply a filter (by setting the m_rayShapeCollectionFilter) which
  26. /// accesses this value. For example, the supplied filter, hkpGroupFilter, uses this value, so if you use
  27. /// this the hkpGroupFilter as the m_rayShapeCollectionFilter you must set this value.
  28. hkUint32 m_filterInfo;
  29. /// This is the filter which will be used to decide whether to hit or not hit.
  30. /// Note: this variable will normally be set automatically by the engine if you
  31. /// call hkpWorld::castRay / hkpAabbPhantom::castRay
  32. const hkpRayShapeCollectionFilter* m_rayShapeCollectionFilter;
  33. };
  34. void HK_CALL hkBundleRays( const hkpShapeRayCastInput rays[4], hkpShapeRayBundleCastInput& bundleOut );
  35. void HK_CALL hkUnBundleRays(const hkpShapeRayBundleCastInput& bundleIn, hkpShapeRayCastInput rays[4]);
  36. #include <Physics/Collide/Shape/Query/hkpShapeRayBundleCastInput.inl>
  37. #endif // HK_SHAPE_RAY_BUNDLE_CAST_INPUT
  38. /*
  39. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  40. * Confidential Information of Havok.  (C) Copyright 1999-2009
  41. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  42. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  43. * rights, and intellectual property rights in the Havok software remain in
  44. * Havok and/or its suppliers.
  45. * Use of this software for evaluation purposes is subject to and indicates
  46. * acceptance of the End User licence Agreement for this product. A copy of
  47. * the license is included with this software and is also available at www.havok.com/tryhavok.
  48. */