//=========================================================================== // 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 _EXTREMALPTSURFSURF_H 00016 #define _EXTREMALPTSURFSURF_H 00017 00025 #include "GoTools/geometry/ParamSurface.h" 00026 00027 namespace Go { 00081 int extremalPtSurfSurf(ParamSurface* psurf1, ParamSurface* psurf2, 00082 int constraints[2], double constraints_par[2], 00083 double limit[], double enext[], 00084 double gpos[], double angle_tol); 00085 00086 00087 // Anonymous namespace 00088 namespace { 00089 00090 00099 void insideParamDomain(double gd[], double coef[],double limit[]); 00100 00101 00123 void nextStep(double cdiff[],std::vector<Point> evals, 00124 std::vector<Point> evalq); 00125 00126 00127 } // Anonymous namespace 00128 00129 } // namespace Go 00130 00131 #endif // _EXTREMALPTSURFSURF_H