Moving cfMesh into place. Updated contibutors list
[foam-extend-3.2.git] / src / mesh / cfMesh / meshLibrary / utilities / helperClasses / geometry / quadricFitting / quadricFitting.H
blobc2381a3353f5d7e02b6b3e170484cb9043aa10f9
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | cfMesh: A library for mesh generation
4    \\    /   O peration     |
5     \\  /    A nd           | Author: Franjo Juretic (franjo.juretic@c-fields.com)
6      \\/     M anipulation  | Copyright (C) Creative Fields, Ltd.
7 -------------------------------------------------------------------------------
8 License
9     This file is part of cfMesh.
11     cfMesh is free software; you can redistribute it and/or modify it
12     under the terms of the GNU General Public License as published by the
13     Free Software Foundation; either version 3 of the License, or (at your
14     option) any later version.
16     cfMesh is distributed in the hope that it will be useful, but WITHOUT
17     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
19     for more details.
21     You should have received a copy of the GNU General Public License
22     along with cfMesh.  If not, see <http://www.gnu.org/licenses/>.
24 Class
25     quadricFitting
27 Description
28     A class for fitting a quadric surface through the set of points. It is
29     useful for curvature estimation and for calculating normals.
31 SourceFiles
32     quadricFittingI.H
34 \*---------------------------------------------------------------------------*/
36 #ifndef quadricFitting_H
37 #define quadricFitting_H
39 #include "DynList.H"
40 #include "plane.H"
41 #include "simpleMatrix.H"
43 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
45 namespace Foam
48 /*---------------------------------------------------------------------------*\
49                         class quadricFitting Declaration
50 \*---------------------------------------------------------------------------*/
52 class quadricFitting
54     // Private data
55         //- seed point for fitting the quadric surface
56         point origin_;
58         //- normal vector at the origin
59         vector normal_;
61         //- x-coordinate vector for the transformed coordinate system
62         vector vecX_;
64         //- y-coordinate vector for the transformed coordinate system
65         vector vecY_;
67         //- other points
68         DynList<point> otherPoints_;
70         //- transformed coordinates of other points
71         DynList<point> transformedPoints_;
73         //- coefficients of the quadric surface
74         scalarField coefficients_;
76     // Private member functions
77         //- initial estimate of the normal vector
78         void calculateNormalVector();
80         //- calculate transformed coordinate system
81         void calculateCoordinateSystem();
83         //- calculate coefficients of the quadric surface fit
84         void calculateQuadricCoeffs();
86         //- iterative procedure for updating normals
87         //- until the best fit is achieved
88         void calculateBestFit();
90 public:
92     // Constructors
94         //- Construct from point, normal, and neighbouring points
95         template<class ListType>
96         inline quadricFitting(const point&, const vector, const ListType&);
98         //- Construct from point and other points
99         template<class ListType>
100         inline quadricFitting(const point&, const ListType&);
102     // Destructor
103         ~quadricFitting();
106     // Member Functions
108         // Access
110             //- Return surface normal
111             inline const vector& normal() const;
113             //- Return min curvature
114             inline scalar minCurvature() const;
116             //- Return max curvature
117             inline scalar maxCurvature() const;
119             //- Return mean curvature
120             inline scalar meanCurvature() const;
122             //- Return Gaussian curvature
123             inline scalar gaussianCurvature() const;
125             //- Return min curvature vector
126             inline vector minCurvatureVector() const;
128             //- Return max curvature vector
129             inline vector maxCurvatureVector() const;
132 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
134 } // End namespace Foam
136 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
138 #include "quadricFittingI.H"
140 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
142 #endif
144 // ************************************************************************* //