bezier.hpp
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:4k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * bezier.hpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 VideoLAN
  5.  * $Id: bezier.hpp 6961 2004-03-05 17:34:23Z sam $
  6.  *
  7.  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
  8.  *          Olivier Teuli鑢e <ipkiss@via.ecp.fr>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  23.  *****************************************************************************/
  24. #ifndef BEZIER_HPP
  25. #define BEZIER_HPP
  26. #include "../src/skin_common.hpp"
  27. #include "pointer.hpp"
  28. #include <vector>
  29. #define MAX_BEZIER_POINT 1023
  30. /// Class for Bezier curves
  31. class Bezier: public SkinObject
  32. {
  33.     public:
  34.         /// Values to indicate which coordinate(s) must be checked to consider
  35.         /// that two points are distinct
  36.         typedef enum
  37.         {
  38.             kCoordsBoth,    // x or y must be different (default)
  39.             kCoordsX,       // only x is different
  40.             kCoordsY        // only y is different
  41.         } Flag_t;
  42.         Bezier( intf_thread_t *p_intf,
  43.                 const vector<float> &pAbscissas,
  44.                 const vector<float> &pOrdinates,
  45.                 Flag_t flag = kCoordsBoth );
  46.         ~Bezier() {}
  47.         /// Get the number of control points used to define the curve
  48.         int getNbCtrlPoints() const { return m_nbCtrlPt; }
  49.         /// Return the percentage (between 0 and 1) of the curve point nearest
  50.         /// from (x, y)
  51.         float getNearestPercent( int x, int y ) const;
  52.         /// Return the distance of (x, y) to the curve
  53.         float getMinDist( int x, int y ) const;
  54.         /// Get the coordinates of the point at t percent of
  55.         /// the curve (t must be between 0 and 1)
  56.         void getPoint( float t, int &x, int &y ) const;
  57.         /// Get the width (maximum abscissa) of the curve
  58.         int getWidth() const;
  59.         /// Get the height (maximum ordinate) of the curve
  60.         int getHeight() const;
  61.     private:
  62.         /// Number of control points
  63.         int m_nbCtrlPt;
  64.         /// vectors containing the coordinates of the control points
  65.         vector<float> m_ptx;
  66.         vector<float> m_pty;
  67.         /// Vector containing precalculated factoriels
  68.         vector<float> m_ft;
  69.         /// Number of points (=pixels) used by the curve
  70.         int m_nbPoints;
  71.         /// Vectors with the coordinates of the different points of the curve
  72.         vector<int> m_leftVect;
  73.         vector<int> m_topVect;
  74.         /// Vector with the percentages associated with the points of the curve
  75.         vector<float> m_percVect;
  76.         /// Return the index of the curve point that is the nearest from (x, y)
  77.         int findNearestPoint( int x, int y ) const;
  78.         /// Compute the coordinates of a point corresponding to a given
  79.         /// percentage
  80.         void computePoint( float t, int &x, int &y ) const;
  81.         /// Helper function to compute a coefficient of the curve
  82.         inline float computeCoeff( int i, int n, float t ) const;
  83.         /// x^n
  84.         inline float power( float x, int n ) const;
  85. };
  86. typedef CountedPtr<Bezier> BezierPtr;
  87. #endif