mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Read only support:
.bdf, .nas - NASTRAN format. Handles both CBEAM and CROD as lines.
CROD is what Hypermesh happens to output.
Write only support:
.vtk - VTK legacy format in ASCII
Read/write support:
.eMesh - native format, which is simply a list of points, edges
with an additional IOobject header that lets them be moved about
easily to use as a featureEdgeMesh.
.inp - STAR-CD inp/cel/vrt combination
IOobject header)
.obj - Alias waverfront format
Radically simplify surfaceFeatureConvert by using the new edgeMesh
functionality.
122 lines
3.2 KiB
C++
122 lines
3.2 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / 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<edgeMesh> New(const fileName& name)
|
|
{
|
|
return autoPtr<edgeMesh>
|
|
(
|
|
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
|
|
|
|
// ************************************************************************* //
|