Developer Documentation
|
#include <OpenFlipper/libs_required/OpenMesh/src/OpenMesh/Core/IO/writer/STLWriter.hh>
Public Member Functions | |
virtual | ~_STLWriter_ () |
Destructor. | |
std::string | get_description () const override |
Return short description of the supported file format. | |
std::string | get_extensions () const override |
Return file format's extension. | |
bool | write (const std::string &, BaseExporter &, Options, std::streamsize _precision=6) const override |
bool | write (std::ostream &, BaseExporter &, Options, std::streamsize _precision=6) const override |
size_t | binary_size (BaseExporter &, Options) const override |
Returns expected size of file if binary format is supported else 0. | |
Public Member Functions inherited from OpenMesh::IO::BaseWriter | |
virtual | ~BaseWriter () |
Destructor. | |
virtual bool | can_u_write (const std::string &_filename) const |
Returns true if writer can write _filename (checks extension). _filename can also provide an extension without a name for a file e.g. _filename == "om" checks, if the writer can write the "om" extension. More... | |
Private Member Functions | |
bool | write_stla (const std::string &, BaseExporter &, Options) const |
bool | write_stla (std::ostream &, BaseExporter &, Options, std::streamsize _precision=6) const |
bool | write_stlb (const std::string &, BaseExporter &, Options) const |
bool | write_stlb (std::ostream &, BaseExporter &, Options, std::streamsize _precision=6) const |
Additional Inherited Members | |
Public Types inherited from OpenMesh::IO::BaseWriter | |
typedef unsigned int | Option |
Protected Member Functions inherited from OpenMesh::IO::BaseWriter | |
bool | check (BaseExporter &_be, Options _opt) const |
Implementation of the STL format writer. This class is singleton'ed by SingletonT to STLWriter.
Definition at line 82 of file STLWriter.hh.
|
overridevirtual |
Write to a file
_filename | write to file with the given filename |
_be | BaseExporter, which specifies the data source |
_opt | writing options |
_precision | can be used to specify the precision of the floating point notation. |
Implements OpenMesh::IO::BaseWriter.
Definition at line 83 of file STLWriter.cc.
|
overridevirtual |
Write to a std::ostream
_os | write to std::ostream |
_be | BaseExporter, which specifies the data source |
_opt | writing options |
_precision | can be used to specify the precision of the floating point notation. |
Implements OpenMesh::IO::BaseWriter.
Definition at line 111 of file STLWriter.cc.