hkpParametricCurve.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_PARAMETRIC_CURVE_H
  9. #define HK_PARAMETRIC_CURVE_H
  10. #include <Common/Base/hkBase.h>
  11. extern const hkClass hkpParametricCurveClass;
  12. class hkpParametricCurve : public hkReferencedObject
  13. {
  14. public:
  15. HK_DECLARE_CLASS_ALLOCATOR( HK_MEMORY_CLASS_CONSTRAINT );
  16. HK_DECLARE_REFLECTION();
  17. /// Given a parametric value map to a point on the curve. 
  18. virtual void getPoint( hkReal t, hkVector4& pointOnPathOut ) const = 0;
  19. /// Map a parametric value and a point to the nearest point on the curve.  Returns the parametric value.
  20. virtual hkReal getNearestPoint( hkReal t, const hkVector4& nearPoint, hkVector4& pointOnPathOut ) const = 0;
  21. /// Return the normalized tangent at the point on the curve specified by the parametric value.
  22. virtual void getTangent( hkReal t, hkVector4& tangentOut ) const = 0;
  23. /// Return the smallest parametric value that is on the curve.
  24. virtual hkReal getStart() const = 0;
  25. /// Return the largest parametric value that is on the curve.
  26. virtual hkReal getEnd() const = 0;
  27. /// Return physical length along the curve from the start of the curve to this parametric point.
  28. virtual hkReal getLengthFromStart( hkReal t ) const = 0;
  29. /// Return the normalized vector that defines "up" for a path.
  30. /// This is only used by a path constraint if ALL of the angular degrees of freedom are being constrained.
  31. virtual void getBinormal( hkReal t, hkVector4& up ) const = 0;
  32. /// Returns true if the path is closed.  i.e. the beginning is the end and the end is the beginning.
  33. virtual hkBool isClosedLoop() const = 0;
  34. /// Return an array of points to draw.
  35. virtual void getPointsToDraw(hkArray<hkVector4>& pathPoints) const = 0;
  36. ///Transform all the points in the curve
  37. virtual void transformPoints( const hkTransform& transformation ) = 0; 
  38. /// Create an exact copy of path
  39. virtual hkpParametricCurve* clone() = 0;
  40. public:
  41. hkpParametricCurve(hkFinishLoadedObjectFlag flag) : hkReferencedObject(flag) {}
  42. protected:
  43. hkpParametricCurve() {}
  44. };
  45. #endif 
  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. */