hkDrawUtil.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_VISUALIZE_DRAWUTIL_H
  9. #define HK_VISUALIZE_DRAWUTIL_H
  10. #include <Common/Base/Types/Color/hkColor.h>
  11. /// This class facilitates drawing cones, arrows, planes representing ragdoll limits.
  12. class hkDrawUtil: public hkReferencedObject
  13. {
  14. public:
  15. HK_DECLARE_CLASS_ALLOCATOR(HK_MEMORY_CLASS_TOOLS);
  16. hkDrawUtil(hkReal new_scale);
  17. /// Displays an oriented point.
  18. void displayOrientedPoint(const hkVector4& position,const hkRotation& rot,hkReal size,unsigned int color);
  19. /// Displays a point.
  20. void displayPoint(const hkVector4& position,hkReal size,hkUint32 color);
  21. /// Displays a line segment.
  22. void displaySegment(const hkVector4& p1, const hkVector4& p2, hkUint32 color);
  23. /// Displays a cone.
  24. void displayCone (hkReal cone_angle, const hkVector4& startPos, const hkVector4& coneAaxis, const hkVector4& perpVector, int numSegments, unsigned color);
  25. /// Displays a plane.
  26. void displayPlane (const hkVector4& startPos, const hkVector4& planeNormal, const hkVector4& vectorOnPlane, unsigned color, hkBool showNormal = true);
  27. /// Displays an arrow.
  28. void displayArrow (const hkVector4& startPos, const hkVector4& arrowDirection, const hkVector4& perpDirection, unsigned color);
  29.         
  30. /// Draws a semi circle.
  31. /// param center The position of the center in world space
  32. /// param normal The axis about which the circle is drawn
  33. /// param startPerp An orthogonal axis to the normal which defines the start of the sweep
  34. void drawSemiCircle(const hkVector4& center, hkVector4& normal, 
  35.     hkVector4& startPerp, hkReal thetaMin, hkReal thetaMax,
  36. hkReal radius,int numSegments, 
  37. unsigned int color);
  38. /// Gets the scale by which the visual representation of cones, arrows and planes will be scaled.
  39. hkReal getScale();
  40. /// Sets the scale by which the visual representation of cones, arrows and planes will be scaled.
  41. void setScale(hkReal new_scale);
  42. protected:
  43. hkReal m_scale;
  44. };
  45. #endif // HK_VISUALIZE_DRAWUTIL_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. */