VTK  9.1.0
vtkOBJImporter.h
Go to the documentation of this file.
1 /*=========================================================================
2  Program: Visualization Toolkit
3  Module: vtkOBJImporter.h
4  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
5  All rights reserved.
6  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
7 
8  This software is distributed WITHOUT ANY WARRANTY; without even
9  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
10  PURPOSE. See the above copyright notice for more information.
11 =========================================================================*/
62 #ifndef vtkOBJImporter_h
63 #define vtkOBJImporter_h
64 
65 #include "vtkIOImportModule.h" // For export macro
66 #include "vtkImporter.h"
67 #include "vtkSmartPointer.h" // for ivars
68 #include <string> // for string
69 
70 class vtkRenderWindow;
71 class vtkRenderer;
72 class vtkPolydata;
74 
98 class VTKIOIMPORT_EXPORT vtkOBJImporter : public vtkImporter
99 {
100 public:
101  static vtkOBJImporter* New();
102 
103  vtkTypeMacro(vtkOBJImporter, vtkImporter);
104  void PrintSelf(ostream& os, vtkIndent indent) override;
105 
107 
110  void SetFileName(VTK_FILEPATH const char* arg);
111  void SetFileNameMTL(VTK_FILEPATH const char* arg);
112  void SetTexturePath(VTK_FILEPATH const char* path);
113  VTK_FILEPATH const char* GetFileName() const;
114  VTK_FILEPATH const char* GetFileNameMTL() const;
115  VTK_FILEPATH const char* GetTexturePath() const;
117 
122 
127 
128 protected:
130  ~vtkOBJImporter() override;
131 
132  int ImportBegin() override /*override*/;
133  void ImportEnd() override /*override*/;
134  void ReadData() override /* override */;
135 
137 
138 private:
139  vtkOBJImporter(const vtkOBJImporter&) = delete;
140  void operator=(const vtkOBJImporter&) = delete;
141 };
142 
143 #endif
importer abstract class
Definition: vtkImporter.h:60
a simple class to control print indentation
Definition: vtkIndent.h:113
import from .obj wavefront files
std::string GetOutputDescription(int idx)
Get a string describing an output.
std::string GetOutputsDescription() override
Get a printable string describing all outputs.
VTK_FILEPATH const char * GetTexturePath() const
Specify the name of the file to read.
static vtkOBJImporter * New()
void SetTexturePath(VTK_FILEPATH const char *path)
Specify the name of the file to read.
int ImportBegin() override
void SetFileNameMTL(VTK_FILEPATH const char *arg)
Specify the name of the file to read.
~vtkOBJImporter() override
void SetFileName(VTK_FILEPATH const char *arg)
Specify the name of the file to read.
VTK_FILEPATH const char * GetFileName() const
Specify the name of the file to read.
VTK_FILEPATH const char * GetFileNameMTL() const
Specify the name of the file to read.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
create a window for renderers to draw into
abstract specification for renderers
Definition: vtkRenderer.h:173
Hold a reference to a vtkObjectBase instance.
@ string
Definition: vtkX3D.h:496
#define VTK_FILEPATH