//=========================================================================== // GoTools Core - SINTEF Geometry Tools Core library, version 2.0.1 // // Copyright (C) 2000-2007, 2010 SINTEF ICT, Applied Mathematics, Norway. // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation version 2 of the License. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program; if not, write to the Free Software // Foundation, Inc., // 59 Temple Place - Suite 330, // Boston, MA 02111-1307, USA. // // Contact information: E-mail: tor.dokken@sintef.no // SINTEF ICT, Department of Applied Mathematics, // P.O. Box 124 Blindern, // 0314 Oslo, Norway. // // Other licenses are also available for this software, notably licenses // for: // - Building commercial software. // - Building software whose source code you wish to keep private. //=========================================================================== 00015 #ifndef _HERMITEINTERPOLATOR_H 00016 #define _HERMITEINTERPOLATOR_H 00017 00018 00019 #include "GoTools/geometry/Interpolator.h" 00020 #include "GoTools/geometry/BsplineBasis.h" 00021 #include "GoTools/utils/Point.h" 00022 00023 namespace Go 00024 { 00025 00030 class GO_API HermiteInterpolator : public Interpolator 00031 { 00032 public: 00034 HermiteInterpolator() {} 00035 00037 virtual ~HermiteInterpolator(); 00038 00039 // inherited from Interpolator 00040 virtual const BsplineBasis& basis(); 00041 00058 virtual void interpolate(int num_points, 00059 int dimension, 00060 const double* param_start, 00061 const double* data_start, 00062 std::vector<double>& coefs); 00063 00080 void interpolate(const std::vector<Point>& data, 00081 const std::vector<double>& param, 00082 std::vector<double>& coefs); 00083 00084 private: 00085 BsplineBasis basis_; 00086 }; 00087 00088 } // namespace Go 00089 00090 #endif // _HERMITEINTERPOLATOR_H 00091 00092 00093