STLsurfaceFormatRunTime.C
Go to the documentation of this file.
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.
10 
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.
15 
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.
20 
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/>.
23 
24 \*---------------------------------------------------------------------------*/
25 
26 #include "STLsurfaceFormat.H"
27 
30 
31 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
32 
33 namespace Foam
34 {
35 namespace fileFormats
36 {
37 
38 // read MeshedSurface (ascii)
40 (
41  MeshedSurface,
42  STLsurfaceFormat,
43  face,
44  fileExtension,
45  stl
46 );
48 (
49  MeshedSurface,
50  STLsurfaceFormat,
51  triFace,
52  fileExtension,
53  stl
54 );
55 
56 // read MeshedSurface (binary)
58 (
59  MeshedSurface,
60  STLsurfaceFormat,
61  face,
62  fileExtension,
63  stlb
64 );
66 (
67  MeshedSurface,
68  STLsurfaceFormat,
69  triFace,
70  fileExtension,
71  stlb
72 );
73 
74 
75 // write MeshedSurfaceProxy (ascii)
77 (
78  MeshedSurfaceProxy,
79  STLsurfaceFormat,
80  face,
81  write,
82  fileExtension,
83  stl
84 );
86 (
87  MeshedSurfaceProxy,
88  STLsurfaceFormat,
89  triFace,
90  write,
91  fileExtension,
92  stl
93 );
94 
95 // write MeshedSurfaceProxy (binary)
97 (
98  MeshedSurfaceProxy,
99  STLsurfaceFormat,
100  face,
101  write,
102  fileExtension,
103  stlb
104 );
106 (
107  MeshedSurfaceProxy,
108  STLsurfaceFormat,
109  triFace,
110  write,
111  fileExtension,
112  stlb
113 );
114 
115 // write UnsortedMeshedSurface (ascii)
117 (
118  UnsortedMeshedSurface,
119  STLsurfaceFormat,
120  face,
121  write,
122  fileExtension,
123  stl
124 );
126 (
127  UnsortedMeshedSurface,
128  STLsurfaceFormat,
129  triFace,
130  write,
131  fileExtension,
132  stl
133 );
134 
135 // write UnsortedMeshedSurface (binary)
137 (
138  UnsortedMeshedSurface,
139  STLsurfaceFormat,
140  face,
141  write,
142  fileExtension,
143  stlb
144 );
146 (
147  UnsortedMeshedSurface,
148  STLsurfaceFormat,
149  triFace,
150  write,
151  fileExtension,
152  stlb
153 );
154 
155 }
156 }
157 
158 // ************************************************************************* //
Macros for easy insertion into run-time selection tables.
void write(Ostream &, const label, const dictionary &)
Write with dictionary lookup.
face triFace(3)
addNamedTemplatedToRunTimeSelectionTable(MeshedSurface, AC3DsurfaceFormat, face, fileExtension, ac)
Macros for easy insertion into member function selection tables.
addNamedTemplatedToMemberFunctionSelectionTable(MeshedSurfaceProxy, AC3DsurfaceFormat, face, write, fileExtension, ac)
Namespace for OpenFOAM.