hkpLinearParametricCurve.h
上传用户:yisoukefu
上传日期:2020-08-09
资源大小:39506k
文件大小:5k
源码类别:

其他游戏

开发平台:

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 HAVOK_LINEAR_PARAMETRIC_CURVE_H
  9. #define HAVOK_LINEAR_PARAMETRIC_CURVE_H
  10. #include <Physics/Dynamics/Constraint/Bilateral/PointToPath/hkpParametricCurve.h>
  11. extern const hkClass hkpLinearParametricCurveClass;
  12. /// Piecewise linear curve class
  13. class hkpLinearParametricCurve : public hkpParametricCurve
  14. {
  15. public:
  16. HK_DECLARE_REFLECTION();
  17. /// Default constructor.
  18. ///
  19. /// Default smoothing parameter is 0.01f.
  20. /// Loop is "non-closed" by default.
  21. /// To create a closed loop, the last segment should overlap the first segment exactly.
  22. /// This is easily accomplished by adding the first TWO points again at the end of the path.
  23. /// Or, if your last point is coincident to the first point, just add the second point of your
  24. /// path again as the last point.  After this, setting the m_closedLoop flag to true will give 
  25. /// you the desired behavior.
  26. hkpLinearParametricCurve();
  27. /// Given a parametric value, map to a point on the curve. 
  28. virtual void getPoint( hkReal t, hkVector4& pointOnCurve ) const;
  29. /// Map a parametric value and a point to the nearest point on the curve.  Returns the parametric value.
  30. virtual hkReal getNearestPoint( hkReal t, const hkVector4& nearPoint, hkVector4& pointOnPath ) const;
  31. /// Return the normalized tangent at the point on the curve specified by the parametric value.
  32. virtual void getTangent( hkReal t, hkVector4& tangent ) const;
  33. /// Return the smallest parametric value that is on the curve.
  34. virtual hkReal getStart() const;
  35. /// Return the largest parametric value that is on the curve.
  36. virtual hkReal getEnd() const;
  37. /// Return physical length along the curve from the start of the curve to this parametric point.
  38. virtual hkReal getLengthFromStart( hkReal t ) const;
  39. /// Return the normalized vector that defines "up" for a path.
  40. /// WARNING: For this curve, we calculate a binormal as being normal to the tangent
  41. /// but not necessarily continuous. 
  42. /// A far better method would be to have a binormal specified at each point and interpolate between them.
  43. virtual void getBinormal( hkReal t, hkVector4& up ) const;
  44. /// Returns true if the path is closed.  i.e. the beginning is the end and the end is the beginning.
  45. virtual hkBool isClosedLoop() const;
  46. // hkpLinearParametricCurve interface
  47. /// Add a point to the path.
  48. void addPoint( const hkVector4& p );
  49. /// Gets the smoothing factor.
  50. /// Smoothing factor determines how much to smooth out seams between line segments.
  51. hkReal getSmoothingFactor() const;
  52. /// Sets the smoothing factor.
  53. /// Smoothing factor determines how much to smooth out seams between line segments.
  54. /// Smoothing factor is the % from the end points of each line segment to begin smoothing.
  55. /// A value of 0.025 allows for fairly sharp angles.  Set it to 0 if you want the curve to be
  56. /// discontinuous in the first derivative.
  57. void setSmoothingFactor( hkReal smooth );
  58.             /// Get an array of points to draw.
  59. virtual void getPointsToDraw(hkArray<hkVector4>& pathPoints) const;
  60. /// Closes or uncloses the loop.
  61. /// A closed loop needs to have the last segment overlap the first segment exactly.
  62. void setClosedLoop( hkBool closeLoop );
  63. /// Transform all the points in the curve
  64. virtual void transformPoints( const hkTransform& transformation );
  65. ///Create an exact copy of the curve
  66. virtual hkpParametricCurve* clone();
  67. public:
  68. hkReal m_smoothingFactor;
  69. hkBool m_closedLoop;
  70. hkVector4 m_dirNotParallelToTangentAlongWholePath;
  71. hkArray<hkVector4> m_points;
  72. hkArray<hkReal> m_distance;
  73. public:
  74. hkpLinearParametricCurve(hkFinishLoadedObjectFlag f) : hkpParametricCurve(f), m_points(f), m_distance(f) {}
  75. };
  76. #endif  
  77. /*
  78. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  79. * Confidential Information of Havok.  (C) Copyright 1999-2009
  80. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  81. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  82. * rights, and intellectual property rights in the Havok software remain in
  83. * Havok and/or its suppliers.
  84. * Use of this software for evaluation purposes is subject to and indicates
  85. * acceptance of the End User licence Agreement for this product. A copy of
  86. * the license is included with this software and is also available at www.havok.com/tryhavok.
  87. */