STLsurfaceFormatRunTime.C
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration | Website: https://openfoam.org
5  \\ / A nd | Copyright (C) 2011-2018 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 (
43  face,
44  fileExtension,
45  stl
46 );
48 (
51  triFace,
52  fileExtension,
53  stl
54 );
55 
56 // read MeshedSurface (binary)
58 (
61  face,
62  fileExtension,
63  stlb
64 );
66 (
69  triFace,
70  fileExtension,
71  stlb
72 );
73 
74 
75 // write MeshedSurfaceProxy (ascii)
77 (
80  face,
81  write,
82  fileExtension,
83  stl
84 );
86 (
89  triFace,
90  write,
91  fileExtension,
92  stl
93 );
94 
95 // write MeshedSurfaceProxy (binary)
97 (
100  face,
101  write,
102  fileExtension,
103  stlb
104 );
106 (
109  triFace,
110  write,
111  fileExtension,
112  stlb
113 );
114 
115 // write UnsortedMeshedSurface (ascii)
117 (
120  face,
121  write,
122  fileExtension,
123  stl
124 );
126 (
129  triFace,
130  write,
131  fileExtension,
132  stl
133 );
134 
135 // write UnsortedMeshedSurface (binary)
137 (
140  face,
141  write,
142  fileExtension,
143  stlb
144 );
146 (
149  triFace,
150  write,
151  fileExtension,
152  stlb
153 );
154 
155 }
156 }
157 
158 // ************************************************************************* //
Macros for easy insertion into member function selection tables.
Macros for easy insertion into run-time selection tables.
A proxy for writing MeshedSurface, UnsortedMeshedSurface and surfMesh to various file formats.
A surface geometry mesh with zone information, not to be confused with the similarly named surfaceMes...
Definition: MeshedSurface.H:85
A surface geometry mesh, in which the surface zone information is conveyed by the 'zoneId' associated...
A face is a list of labels corresponding to mesh vertices.
Definition: face.H:76
Provide a means of reading/writing STL files (ASCII and binary).
A triangular face using a FixedList of labels corresponding to mesh vertices.
Definition: triFace.H:71
addNamedTemplatedToMemberFunctionSelectionTable(MeshedSurfaceProxy, AC3DsurfaceFormat, face, write, fileExtension, ac)
addNamedTemplatedToRunTimeSelectionTable(MeshedSurface, AC3DsurfaceFormat, face, fileExtension, ac)
void write(std::ostream &os, const bool binary, List< floatScalar > &fField)
Write floats ascii or binary.
Namespace for OpenFOAM.