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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: curve_cubic.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 19:48:44  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.3
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_MATH___CURVE_CUBIC__HPP
  10. #define GUI_MATH___CURVE_CUBIC__HPP
  11. /*  $Id: curve_cubic.hpp,v 1000.1 2004/06/01 19:48:44 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 CCurveCubic : public ICurve
  48. {
  49. public:
  50.     typedef CVect4<TPoint> TControlPoints;
  51.     CCurveCubic();
  52.     /// recalculate the curve (curve-specific)
  53.     void    Recalc();
  54.     /// access a control point
  55.     const TPoint& GetPoint(size_t i) const;
  56.     TPoint&       SetPoint(size_t i);
  57.     void          SetPoint(size_t i, const TPoint& point);
  58.     //// evaluate the current curve at a given value [0, 1]
  59.     TPoint EvalPos  (float u) const;
  60.     TPoint EvalTan  (float u) const;
  61.     TPoint EvalCurve(float u) const;
  62.     /// access the error
  63.     float GetError(void) const;
  64.     void  SetError(float f);
  65. protected:
  66.     /// the control points
  67.     CVect4< TPoint > m_Points;
  68.     /// error
  69.     float m_Error;
  70. };
  71. inline
  72. const CCurveCubic::TPoint& CCurveCubic::GetPoint(size_t i) const
  73. {
  74.     _ASSERT(i < 4);
  75.     return m_Points[i];
  76. }
  77. inline
  78. CCurveCubic::TPoint& CCurveCubic::SetPoint(size_t i)
  79. {
  80.     _ASSERT(i < 4);
  81.     return m_Points[i];
  82. }
  83. inline
  84. void CCurveCubic::SetPoint(size_t i, const TPoint& point)
  85. {
  86.     _ASSERT(i < 4);
  87.     m_Points[i] = point;
  88. }
  89. inline
  90. float CCurveCubic::GetError() const
  91. {
  92.     return m_Error;
  93. }
  94. inline
  95. void CCurveCubic::SetError(float f)
  96. {
  97.     m_Error = f;
  98. }
  99. END_NCBI_SCOPE
  100. /* @} */
  101. /*
  102.  * ===========================================================================
  103.  * $Log: curve_cubic.hpp,v $
  104.  * Revision 1000.1  2004/06/01 19:48:44  gouriano
  105.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.3
  106.  *
  107.  * Revision 1.3  2004/05/11 18:53:50  dicuccio
  108.  * Added doxygen modules info
  109.  *
  110.  * Revision 1.2  2004/03/11 17:16:28  dicuccio
  111.  * Added export specifiers.  Fixed include guards
  112.  *
  113.  * Revision 1.1  2004/03/10 14:02:59  dicuccio
  114.  * Initial revision
  115.  *
  116.  * ===========================================================================
  117.  */
  118. #endif  // GUI_MATH___CURVE_CUBIC__HPP