Forward compatibility: flex
[foam-extend-3.2.git] / src / mesh / cfMesh / utilities / meshes / primitives / partTet / partTet.H
blobf6dd22edfbab4808a2368308e137d147eb735827
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     partTet
27 Description
28     A partTet is a primitive needed during mesh smoothing
30 SourceFiles
31     partTetI.H
33 \*---------------------------------------------------------------------------*/
35 #ifndef partTet_H
36 #define partTet_H
38 #include "pointField.H"
39 #include "edge.H"
40 #include "FixedList.H"
42 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
44 namespace Foam
47 class Istream;
48 class Ostream;
50 /*---------------------------------------------------------------------------*\
51                            class partTet Declaration
52 \*---------------------------------------------------------------------------*/
54 class partTet
56 protected:
58     // Protected data
59         label data_[4];
61 public:
63     // Constructors
64         //- Null construct
65         inline partTet();
67         //- Construct from point labels
68         inline partTet
69         (
70             const label a,
71             const label b,
72             const label c,
73             const label d
74         );
76     // Destructor
77         ~partTet();
80     // Member Functions
82         // Access
84             //- Return vertices
85             inline label a() const;
87             inline label b() const;
89             inline label c() const;
91             inline label d() const;
93             inline label size() const;
95         // Searches
96             //- find position of the node in the partTet
97             inline label whichPosition(const label) const;
99         // Properties
101             //- Return face normal
102             template<class PointField>
103             inline vector Sa(const PointField&) const;
105             template<class PointField>
106             inline vector Sb(const PointField&) const;
108             template<class PointField>
109             inline vector Sc(const PointField&) const;
111             template<class PointField>
112             inline vector Sd(const PointField&) const;
115             //- Return volume
116             template<class PointField>
117             inline scalar mag(const PointField&) const;
119             //- Return circum-centre
120             template<class PointField>
121             inline point crcmCentre(const PointField&) const;
123             template<class PointField>
124             inline scalar crcmRadius(const PointField&) const;
126             //- Return centroid of the tetrahedron
127             template<class PointField>
128             inline point centroid(const PointField&) const;
130             //- Return edges
131             inline FixedList<edge, 6> edges() const;
133             //- Return edge
134             inline edge getEdge(const label) const;
136     // Member operators
138             inline label operator[](const label) const;
140             inline void operator=(const partTet&);
142             inline bool operator==(const partTet&) const;
143             inline bool operator!=(const partTet&) const;
145     // IOstream operators
147             friend Ostream& operator<<(Ostream&, const partTet&);
151 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
153 } // End namespace Foam
155 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
157 #include "partTetI.H"
159 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
161 #endif
163 // ************************************************************************* //