VTK  9.1.0
vtkOBJExporter.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkOBJExporter.h
5
6 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7 All rights reserved.
8 See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9
10 This software is distributed WITHOUT ANY WARRANTY; without even
11 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12 PURPOSE. See the above copyright notice for more information.
13
14=========================================================================*/
37#ifndef vtkOBJExporter_h
38#define vtkOBJExporter_h
39
40#include "vtkExporter.h"
41#include "vtkIOExportModule.h" // For export macro
42#include <fstream> // For ofstream
43#include <map> // For map
44#include <vector> // For string
45
46class vtkActor;
47class vtkTexture;
48
49class VTKIOEXPORT_EXPORT vtkOBJExporter : public vtkExporter
50{
51public:
54 void PrintSelf(ostream& os, vtkIndent indent) override;
55
57
64
66
69 vtkSetStringMacro(OBJFileComment);
70 vtkGetStringMacro(OBJFileComment);
72
74
77 vtkSetStringMacro(MTLFileComment);
78 vtkGetStringMacro(MTLFileComment);
80
81protected:
83 ~vtkOBJExporter() override;
84
85 void WriteData() override;
87 vtkActor* anActor, std::ostream& fpObj, std::ostream& fpMat, std::string& modelName, int& id);
92 std::map<std::string, vtkTexture*> TextureFileMap;
93
94private:
95 vtkOBJExporter(const vtkOBJExporter&) = delete;
96 void operator=(const vtkOBJExporter&) = delete;
97};
98
99#endif
represents an object (geometry & properties) in a rendered scene
Definition: vtkActor.h:55
abstract class to write a scene to a file
Definition: vtkExporter.h:48
a simple class to control print indentation
Definition: vtkIndent.h:43
export a scene into Wavefront format.
void WriteAnActor(vtkActor *anActor, std::ostream &fpObj, std::ostream &fpMat, std::string &modelName, int &id)
vtkSetFilePathMacro(FilePrefix)
Specify the prefix of the files to write out.
void WriteData() override
~vtkOBJExporter() override
char * OBJFileComment
static vtkOBJExporter * New()
vtkGetFilePathMacro(FilePrefix)
Specify the prefix of the files to write out.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
char * MTLFileComment
std::map< std::string, vtkTexture * > TextureFileMap
handles properties associated with a texture map
Definition: vtkTexture.h:75
@ string
Definition: vtkX3D.h:496