VTK  9.4.20241226
vtkGLTFTexture.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
3
4#ifndef vtkGLTFTexture_h
5#define vtkGLTFTexture_h
6
7#include "GLTFSampler.h" // For Sampler
8#include "vtkIOGeometryModule.h" // For export macro
9#include "vtkObject.h"
10#include "vtkSetGet.h" // For vtkTypeMacro
11#include "vtkSmartPointer.h" // For vtkSmartPointer
12
13VTK_ABI_NAMESPACE_BEGIN
14class vtkImageData;
15class vtkTexture;
16
17class VTKIOGEOMETRY_EXPORT vtkGLTFTexture : public vtkObject
18{
19public:
20 vtkTypeMacro(vtkGLTFTexture, vtkObject);
22 void PrintSelf(ostream& os, vtkIndent indent) override;
26
27protected:
28 vtkGLTFTexture() = default;
29 ~vtkGLTFTexture() override = default;
30
31private:
32 vtkGLTFTexture(const vtkGLTFTexture&) = delete;
33 void operator=(const vtkGLTFTexture&) = delete;
34};
35
36VTK_ABI_NAMESPACE_END
37#endif
~vtkGLTFTexture() override=default
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkSmartPointer< vtkTexture > GetVTKTexture()
static vtkGLTFTexture * New()
vtkSmartPointer< vtkImageData > Image
GLTFSampler Sampler
vtkGLTFTexture()=default
topologically and geometrically regular array of data
a simple class to control print indentation
Definition vtkIndent.h:108
abstract base class for most VTK objects
Definition vtkObject.h:162
Hold a reference to a vtkObjectBase instance.
handles properties associated with a texture map
Definition vtkTexture.h:168
This struct describes a glTF sampler object.
Definition GLTFSampler.h:16