hkDisplayCone.h
上传用户: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. #ifndef HK_VISUALIZE_SHAPE_CONE_H
  9. #define HK_VISUALIZE_SHAPE_CONE_H
  10. #include <Common/Visualize/Shape/hkDisplayGeometry.h>
  11. class hkDisplayCone : public hkDisplayGeometry
  12. {
  13. public:
  14. hkDisplayCone(const hkReal coneAngle, 
  15.   const hkReal coneHeight,
  16.   const int numSegments, 
  17.   const hkVector4& coneAxis, 
  18.   const hkVector4& startPos);
  19. hkDisplayCone();
  20. void setParameters(const hkReal coneAngle, 
  21.    const hkReal coneHeight,
  22.    const int numSegments, 
  23.    const hkVector4& coneAxis, 
  24.    const hkVector4& startPos);
  25. virtual void buildGeometry();
  26. virtual void getWireframeGeometry(hkArray<hkVector4>& lines);
  27. // get apex of cone in WS
  28. hkVector4 getPosition();
  29. // get axis of cone in WS
  30. hkVector4 getAxis();
  31. // get height along axis
  32. hkReal getHeight();
  33. // get angle of cone
  34. hkReal getAngle();
  35. // get number of segments
  36. int getNumSegments();
  37. protected:
  38. hkVector4 m_startPos;
  39. hkVector4 m_coneAxis;
  40. int m_numSegments;
  41. hkReal m_coneAngle;
  42. hkReal m_coneHeight;
  43. void generateConeVertices(hkArray<hkVector4>& conePoints);
  44. };
  45. #endif // HK_VISUALIZE_SHAPE_CONE_H
  46. /*
  47. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  48. * Confidential Information of Havok.  (C) Copyright 1999-2009
  49. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  50. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  51. * rights, and intellectual property rights in the Havok software remain in
  52. * Havok and/or its suppliers.
  53. * Use of this software for evaluation purposes is subject to and indicates
  54. * acceptance of the End User licence Agreement for this product. A copy of
  55. * the license is included with this software and is also available at www.havok.com/tryhavok.
  56. */