curve_bezier.hpp
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:4k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: curve_bezier.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 19:48:41  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.3
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_MATH___CURVE_BEZIER__HPP
  10. #define GUI_MATH___CURVE_BEZIER__HPP
  11. /*  $Id: curve_bezier.hpp,v 1000.1 2004/06/01 19:48:41 gouriano Exp $
  12.  * ===========================================================================
  13.  *
  14.  *                            PUBLIC DOMAIN NOTICE
  15.  *               National Center for Biotechnology Information
  16.  *
  17.  *  This software / database is a "United States Government Work" under the
  18.  *  terms of the United States Copyright Act.  It was written as part of
  19.  *  the author's official duties as a United States Government employee and
  20.  *  thus cannot be copyrighted.  This software / database is freely available
  21.  *  to the public for use. The National Library of Medicine and the U.S.
  22.  *  Government have not placed any restriction on its use or reproduction.
  23.  *
  24.  *  Although all reasonable efforts have been taken to ensure the accuracy
  25.  *  and reliability of the software and data, the NLM and the U.S.
  26.  *  Government do not and cannot warrant the performance or results that
  27.  *  may be obtained by using this software or data. The NLM and the U.S.
  28.  *  Government disclaim all warranties, express or implied, including
  29.  *  warranties of performance, merchantability or fitness for any particular
  30.  *  purpose.
  31.  *
  32.  *  Please cite the author in any work or product based on this material.
  33.  *
  34.  * ===========================================================================
  35.  *
  36.  * Authors:  Mike DiCuccio
  37.  *
  38.  * File Description:
  39.  *
  40.  */
  41. #include <gui/math/curve.hpp>
  42. /** @addtogroup GUI_MATH
  43.  *
  44.  * @{
  45.  */
  46. BEGIN_NCBI_SCOPE
  47. class NCBI_GUIMATH_EXPORT CCurveBezier : public ICurve
  48. {
  49. public:
  50.     typedef CVect4<TPoint> TControlPoints;
  51.     CCurveBezier();
  52.     /// access a control point
  53.     const TPoint& GetPoint(size_t i) const;
  54.     TPoint&       SetPoint(size_t i);
  55.     void          SetPoint(size_t i, const TPoint& point);
  56.     //// evaluate the current curve at a given value [0, 1]
  57.     TPoint EvalPos  (float u) const;
  58.     TPoint EvalTan  (float u) const;
  59.     TPoint EvalCurve(float u) const;
  60.     /// recalculate the curve's parameter matrix
  61.     void Recalc();
  62.     /// access the error
  63.     float GetError(void) const;
  64.     void SetError(float f);
  65. protected:
  66.     /// error limit
  67.     float m_Error;
  68.     /// the control points of the curve
  69.     TControlPoints m_Points;
  70.     /// The parameter matrix.  This is a combination of the basis function and
  71.     /// the control points
  72.     TControlPoints m_ParamMatrix;
  73.     /// evaluate the parameter matrix for the current control points
  74.     const TControlPoints& x_ParamMatrix() const;
  75. };
  76. inline
  77. const CCurveBezier::TPoint& CCurveBezier::GetPoint(size_t i) const
  78. {
  79.     _ASSERT(i < 4);
  80.     return m_Points[i];
  81. }
  82. inline
  83. CCurveBezier::TPoint& CCurveBezier::SetPoint(size_t i)
  84. {
  85.     _ASSERT(i < 4);
  86.     return m_Points[i];
  87. }
  88. inline
  89. void CCurveBezier::SetPoint(size_t i, const TPoint& point)
  90. {
  91.     _ASSERT(i < 4);
  92.     m_Points[i] = point;
  93. }
  94. inline
  95. float CCurveBezier::GetError() const
  96. {
  97.     return m_Error;
  98. }
  99. inline
  100. void CCurveBezier::SetError(float f)
  101. {
  102.     m_Error = f;
  103. }
  104. inline CCurveBezier::TPoint
  105. CCurveBezier::EvalPos(float u) const
  106. {
  107.     _ASSERT(u >= 0  &&  u <= 1);
  108.     return CVect4<float>(u*u*u, u*u, u, 1) * x_ParamMatrix();
  109. }
  110. inline CCurveBezier::TPoint
  111. CCurveBezier::EvalTan(float u) const
  112. {
  113.     _ASSERT(u >= 0  &&  u <= 1);
  114.     return CVect4<float>(u*u, u, 1, 0) * x_ParamMatrix();
  115. }
  116. inline CCurveBezier::TPoint
  117. CCurveBezier::EvalCurve(float u) const
  118. {
  119.     return CVect4<float>(u, 1, 0, 0) * x_ParamMatrix();
  120. }
  121. END_NCBI_SCOPE
  122. /* @} */
  123. /*
  124.  * ===========================================================================
  125.  * $Log: curve_bezier.hpp,v $
  126.  * Revision 1000.1  2004/06/01 19:48:41  gouriano
  127.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.3
  128.  *
  129.  * Revision 1.3  2004/05/11 18:53:50  dicuccio
  130.  * Added doxygen modules info
  131.  *
  132.  * Revision 1.2  2004/03/11 17:16:28  dicuccio
  133.  * Added export specifiers.  Fixed include guards
  134.  *
  135.  * Revision 1.1  2004/03/10 14:02:59  dicuccio
  136.  * Initial revision
  137.  *
  138.  * ===========================================================================
  139.  */
  140. #endif  // GUI_MATH___CURVE_BEZIER__HPP