meshOctreeSlot.H
Go to the documentation of this file.
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.
10 
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.
15 
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.
20 
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/>.
23 
24 Class
25  meshOctreeSlot
26 
27 Description
28  A class holding information about octree data generated by a single
29  thread
30 
31 SourceFiles
32 
33 \*---------------------------------------------------------------------------*/
34 
35 #ifndef meshOctreeSlot_H
36 #define meshOctreeSlot_H
37 
38 #include "VRWGraph.H"
39 #include "FRWGraph.H"
40 #include "meshOctreeCube.H"
41 
42 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
43 
44 namespace Foam
45 {
46 
47 /*---------------------------------------------------------------------------*\
48  Struct meshOctreeSlot Declaration
49 \*---------------------------------------------------------------------------*/
50 
51 class meshOctreeSlot
52 {
53 public:
54 
55  // Public data
56  //- List of octree cubes
58 
59  //- Pointers to child cubes
61 
62  //- surface triangles contained in an octree cube
64 
65  //- feature edges contained in an octree cube
67 };
68 
69 
70 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
71 
72 } // End namespace Foam
73 
74 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
75 
76 #endif
77 
78 // ************************************************************************* //
VRWGraph.H
meshOctreeCube.H
Foam::meshOctreeSlot::cubes_
LongList< meshOctreeCube > cubes_
List of octree cubes.
Definition: meshOctreeSlot.H:56
Foam::meshOctreeSlot::childCubes_
FRWGraph< meshOctreeCube *, 8 > childCubes_
Pointers to child cubes.
Definition: meshOctreeSlot.H:59
Foam::meshOctreeSlot
Definition: meshOctreeSlot.H:50
Foam::LongList
Definition: LongList.H:55
FRWGraph.H
Foam
Namespace for OpenFOAM.
Definition: combustionModel.C:30
Foam::meshOctreeSlot::containedEdges_
VRWGraph containedEdges_
feature edges contained in an octree cube
Definition: meshOctreeSlot.H:65
Foam::meshOctreeSlot::containedTriangles_
VRWGraph containedTriangles_
surface triangles contained in an octree cube
Definition: meshOctreeSlot.H:62
Foam::FRWGraph
Definition: FRWGraph.H:53
Foam::VRWGraph
Definition: VRWGraph.H:101