1 /*---------------------------------------------------------------------------*\
3 \\ / F ield | foam-extend: Open Source CFD
4 \\ / O peration | Version: 3.2
5 \\ / A nd | Web: http://www.foam-extend.org
6 \\/ M anipulation | For copyright notice see file Copyright
7 -------------------------------------------------------------------------------
9 This file is part of foam-extend.
11 foam-extend 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 foam-extend is distributed in the hope that it will be useful, but
17 WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 General Public License for more details.
21 You should have received a copy of the GNU General Public License
22 along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
25 Foam::fileFormats::OBJsurfaceFormat
28 Provide a means of reading/writing Alias/Wavefront OBJ format.
30 Does not handle negative face indices.
35 \*---------------------------------------------------------------------------*/
37 #ifndef OBJsurfaceFormat_H
38 #define OBJsurfaceFormat_H
40 #include "MeshedSurface.H"
41 #include "MeshedSurfaceProxy.H"
42 #include "UnsortedMeshedSurface.H"
44 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
51 /*---------------------------------------------------------------------------*\
52 Class OBJsurfaceFormat Declaration
53 \*---------------------------------------------------------------------------*/
56 class OBJsurfaceFormat
58 public MeshedSurface<Face>
60 // Private Member Functions
62 //- Disallow default bitwise copy construct
63 OBJsurfaceFormat(const OBJsurfaceFormat<Face>&);
65 //- Disallow default bitwise assignment
66 void operator=(const OBJsurfaceFormat<Face>&);
73 //- Construct from file name
74 OBJsurfaceFormat(const fileName&);
79 //- Read file and return surface
80 static autoPtr<MeshedSurface<Face> > New(const fileName& name)
82 return autoPtr<MeshedSurface<Face> >
84 new OBJsurfaceFormat<Face>(name)
91 virtual ~OBJsurfaceFormat()
97 //- Write surface mesh components by proxy
98 static void write(const fileName&, const MeshedSurfaceProxy<Face>&);
101 virtual bool read(const fileName&);
103 //- Write object file
104 virtual void write(const fileName& name) const
106 write(name, MeshedSurfaceProxy<Face>(*this));
111 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
113 } // End namespace fileFormats
114 } // End namespace Foam
116 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
119 # include "OBJsurfaceFormat.C"
122 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
126 // ************************************************************************* //