VTK  9.3.0
vtkOBJImporter.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2 // SPDX-License-Identifier: BSD-3-Clause
20 #ifndef vtkOBJImporter_h
21 #define vtkOBJImporter_h
22 
23 #include "vtkIOImportModule.h" // For export macro
24 #include "vtkImporter.h"
25 #include "vtkSmartPointer.h" // for ivars
26 #include <string> // for string
27 
28 VTK_ABI_NAMESPACE_BEGIN
29 class vtkRenderWindow;
30 class vtkRenderer;
31 class vtkPolydata;
33 
57 class VTKIOIMPORT_EXPORT vtkOBJImporter : public vtkImporter
58 {
59 public:
60  static vtkOBJImporter* New();
61 
62  vtkTypeMacro(vtkOBJImporter, vtkImporter);
63  void PrintSelf(ostream& os, vtkIndent indent) override;
64 
66 
69  void SetFileName(VTK_FILEPATH const char* arg);
70  void SetFileNameMTL(VTK_FILEPATH const char* arg);
71  void SetTexturePath(VTK_FILEPATH const char* path);
72  VTK_FILEPATH const char* GetFileName() const;
73  VTK_FILEPATH const char* GetFileNameMTL() const;
74  VTK_FILEPATH const char* GetTexturePath() const;
76 
81 
86 
87 protected:
89  ~vtkOBJImporter() override;
90 
91  int ImportBegin() override /*override*/;
92  void ImportEnd() override /*override*/;
93  void ReadData() override /* override */;
94 
96 
97 private:
98  vtkOBJImporter(const vtkOBJImporter&) = delete;
99  void operator=(const vtkOBJImporter&) = delete;
100 };
101 
102 VTK_ABI_NAMESPACE_END
103 #endif
importer abstract class
Definition: vtkImporter.h:49
a simple class to control print indentation
Definition: vtkIndent.h:29
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:62
Hold a reference to a vtkObjectBase instance.
@ string
Definition: vtkX3D.h:490
#define VTK_FILEPATH