#include <mitkPLYBinaryWriter.h>
Inherits mitkMeshWriter.
Inheritance diagram for mitkPLYBinaryWriter:
Public Member Functions | |
virtual void | PrintSelf (ostream &os) |
mitkPLYBinaryWriter is a concrete writer for writing a mesh to PLY files with binary format. PLY is a file format developed by Stanford University for exchanging data like meshes and 3D scans. To use this writer, the code snippet is:
mitkPLYASCIIWriter *aWriter = new mitkPLYASCIIWriter; aWriter->SetInput(aMesh); aWriter->AddFileName(filename); aWriter->SetBigEndian(true); //Default is little endian aWriter->Run();
|
Print the necessary information about this object for the debugging purpose.
Reimplemented from mitkMeshWriter. |