BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / src / OpenFOAM / meshes / primitiveShapes / pyramid / pyramid.H
blob344e587e38c03d8a94f419e12585e0b8fb440946
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2011 OpenFOAM Foundation
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
9     This file is part of OpenFOAM.
11     OpenFOAM is free software: you can redistribute it and/or modify it
12     under the terms of the GNU General Public License as published by
13     the Free Software Foundation, either version 3 of the License, or
14     (at your option) any later version.
16     OpenFOAM 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 OpenFOAM.  If not, see <http://www.gnu.org/licenses/>.
24 Class
25     Foam::pyramid
27 Description
28     A geometric pyramid primitive with a base of 'n' sides:
29     i.e. a parametric pyramid. A pyramid is constructed from
30     a base polygon and an apex point.
32 SourceFiles
33     pyramidI.H
35 \*---------------------------------------------------------------------------*/
37 #ifndef pyramid_H
38 #define pyramid_H
40 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
42 namespace Foam
45 // Forward declaration of friend functions and operators
47 template<class Point, class PointRef, class polygonRef>
48 class pyramid;
50 template<class Point, class PointRef, class polygonRef>
51 inline Istream& operator>>
53     Istream&,
54     pyramid<Point, PointRef, polygonRef>&
57 template<class Point, class PointRef, class polygonRef>
58 inline Ostream& operator<<
60     Ostream&,
61     const pyramid<Point, PointRef, polygonRef>&
65 /*---------------------------------------------------------------------------*\
66                            Class pyramid Declaration
67 \*---------------------------------------------------------------------------*/
69 template<class Point, class PointRef, class polygonRef>
70 class pyramid
72     // Private data
74         polygonRef base_;
75         PointRef apex_;
78 public:
80     // Constructors
82         //- Construct from base polygon and apex point
83         inline pyramid(polygonRef base, const Point& apex);
85         //- Construct from Istream
86         inline pyramid(Istream&);
89     // Member functions
91         // Access
93             //- Return apex point
94             inline const Point& apex() const;
96             //- Return base polygon
97             inline polygonRef base() const;
100         // Properties
102             //- Return centre (centroid)
103             inline Point centre(const pointField& points) const;
105             //- Return height vector
106             inline vector height(const pointField& points) const;
108             //- Return scalar magnitude - returns volume of pyramid
109             inline scalar mag(const pointField& points) const;
112     // IOstream operators
114         friend Istream& operator>> <Point, PointRef, polygonRef>
115         (
116             Istream&,
117             pyramid&
118         );
120         friend Ostream& operator<< <Point, PointRef, polygonRef>
121         (
122             Ostream&,
123             const pyramid&
124         );
128 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
130 } // End namespace Foam
132 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
134 #include "pyramidI.H"
136 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
138 #endif
140 // ************************************************************************* //