/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | Copyright (C) 2009-2009 OpenCFD Ltd. \\/ M anipulation | ------------------------------------------------------------------------------- License This file is part of OpenFOAM. OpenFOAM is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. OpenFOAM is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenFOAM; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA Class Foam::fileFormats::OBJedgeFormat Description Provide a means of reading/writing Alias/Wavefront OBJ format. Does not handle negative vertex indices. SourceFiles OBJedgeFormat.C \*---------------------------------------------------------------------------*/ #ifndef OBJedgeFormat_H #define OBJedgeFormat_H #include "edgeMesh.H" #include "IFstream.H" #include "Ostream.H" #include "OFstream.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { namespace fileFormats { /*---------------------------------------------------------------------------*\ Class OBJedgeFormat Declaration \*---------------------------------------------------------------------------*/ class OBJedgeFormat : public edgeMesh { // Private Member Functions //- Disallow default bitwise copy construct OBJedgeFormat(const OBJedgeFormat&); //- Disallow default bitwise assignment void operator=(const OBJedgeFormat&); public: // Constructors //- Construct from file name OBJedgeFormat(const fileName&); // Selectors //- Read file and return surface static autoPtr New(const fileName& name) { return autoPtr ( new OBJedgeFormat(name) ); } // Destructor virtual ~OBJedgeFormat() {} // Member Functions //- Write surface mesh components by proxy static void write(const fileName&, const edgeMesh&); //- Read from file virtual bool read(const fileName&); //- Write object file virtual void write(const fileName& name) const { write(name, *this); } }; // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // } // End namespace fileFormats } // End namespace Foam // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #endif // ************************************************************************* //