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
28VTK_ABI_NAMESPACE_BEGIN
29class vtkRenderWindow;
30class vtkRenderer;
31class vtkPolydata;
33
57class VTKIOIMPORT_EXPORT vtkOBJImporter : public vtkImporter
58{
59public:
61
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
80 std::string GetOutputsDescription() override;
81
85 std::string GetOutputDescription(int idx);
86
87protected:
89 ~vtkOBJImporter() override;
90
91 int ImportBegin() override /*override*/;
92 void ImportEnd() override /*override*/;
93 void ReadData() override /* override */;
94
96
97private:
98 vtkOBJImporter(const vtkOBJImporter&) = delete;
99 void operator=(const vtkOBJImporter&) = delete;
100};
101
102VTK_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.
void SetTexturePath(VTK_FILEPATH const char *path)
Specify the name of the file to read.
VTK_FILEPATH const char * GetFileName() const
Specify the name of the file to read.
int ImportBegin() override
VTK_FILEPATH const char * GetTexturePath() const
Specify the name of the file to read.
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 * GetFileNameMTL() const
Specify the name of the file to read.
static vtkOBJImporter * New()
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:59
Hold a reference to a vtkObjectBase instance.
#define VTK_FILEPATH