bezier.hpp
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:4k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * bezier.hpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 the VideoLAN team
  5.  * $Id: f4e7d0b447ee4773b499d744e392bd00734ddb02 $
  6.  *
  7.  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
  8.  *          Olivier Teulière <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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, 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.         enum Flag_t
  37.         {
  38.             kCoordsBoth,    // x or y must be different (default)
  39.             kCoordsX,       // only x is different
  40.             kCoordsY        // only y is different
  41.         };
  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, corrected
  53.         /// by the (optional) given scale factors
  54.         float getMinDist( int x, int y, float xScale = 1.0f,
  55.                           float yScale = 1.0f ) const;
  56.         /// Get the coordinates of the point at t percent of
  57.         /// the curve (t must be between 0 and 1)
  58.         void getPoint( float t, int &x, int &y ) const;
  59.         /// Get the width (maximum abscissa) of the curve
  60.         int getWidth() const;
  61.         /// Get the height (maximum ordinate) of the curve
  62.         int getHeight() const;
  63.     private:
  64.         /// Number of control points
  65.         int m_nbCtrlPt;
  66.         /// vectors containing the coordinates of the control points
  67.         vector<float> m_ptx;
  68.         vector<float> m_pty;
  69.         /// Vector containing precalculated factoriels
  70.         vector<float> m_ft;
  71.         /// Number of points (=pixels) used by the curve
  72.         int m_nbPoints;
  73.         /// Vectors with the coordinates of the different points of the curve
  74.         vector<int> m_leftVect;
  75.         vector<int> m_topVect;
  76.         /// Vector with the percentages associated with the points of the curve
  77.         vector<float> m_percVect;
  78.         /// Return the index of the curve point that is the nearest from (x, y)
  79.         int findNearestPoint( int x, int y ) const;
  80.         /// Compute the coordinates of a point corresponding to a given
  81.         /// percentage
  82.         void computePoint( float t, int &x, int &y ) const;
  83.         /// Helper function to compute a coefficient of the curve
  84.         inline float computeCoeff( int i, int n, float t ) const;
  85.         /// x^n
  86.         inline float power( float x, int n ) const;
  87. };
  88. typedef CountedPtr<Bezier> BezierPtr;
  89. #endif