VTK  9.2.6
vtkImplicitTextureCoords.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkImplicitTextureCoords.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 =========================================================================*/
91 #ifndef vtkImplicitTextureCoords_h
92 #define vtkImplicitTextureCoords_h
93 
94 #include "vtkDataSetAlgorithm.h"
95 #include "vtkFiltersTextureModule.h" // For export macro
96 
98 
99 class VTKFILTERSTEXTURE_EXPORT vtkImplicitTextureCoords : public vtkDataSetAlgorithm
100 {
101 public:
103  void PrintSelf(ostream& os, vtkIndent indent) override;
104 
110 
112 
116  vtkGetObjectMacro(RFunction, vtkImplicitFunction);
118 
120 
124  vtkGetObjectMacro(SFunction, vtkImplicitFunction);
126 
128 
132  vtkGetObjectMacro(TFunction, vtkImplicitFunction);
134 
136 
140  vtkSetMacro(FlipTexture, vtkTypeBool);
141  vtkGetMacro(FlipTexture, vtkTypeBool);
142  vtkBooleanMacro(FlipTexture, vtkTypeBool);
144 
145 protected:
148 
150 
155 
156 private:
158  void operator=(const vtkImplicitTextureCoords&) = delete;
159 };
160 
161 #endif
Superclass for algorithms that produce output of the same type as input.
abstract interface for implicit functions
generate 1D, 2D, or 3D texture coordinates based on implicit function(s)
static vtkImplicitTextureCoords * New()
Create object with texture dimension=2 and no r-s-t implicit functions defined and FlipTexture turned...
~vtkImplicitTextureCoords() override
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
virtual void SetRFunction(vtkImplicitFunction *)
Specify an implicit function to compute the r texture coordinate.
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called within ProcessRequest when a request asks the algorithm to do its work.
virtual void SetTFunction(vtkImplicitFunction *)
Specify an implicit function to compute the t texture coordinate.
virtual void SetSFunction(vtkImplicitFunction *)
Specify an implicit function to compute the s texture coordinate.
a simple class to control print indentation
Definition: vtkIndent.h:119
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
int vtkTypeBool
Definition: vtkABI.h:69