VTK
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 =========================================================================*/
49 #ifndef vtkImplicitTextureCoords_h
50 #define vtkImplicitTextureCoords_h
51 
52 #include "vtkFiltersTextureModule.h" // For export macro
53 #include "vtkDataSetAlgorithm.h"
54 
56 
57 class VTKFILTERSTEXTURE_EXPORT vtkImplicitTextureCoords : public vtkDataSetAlgorithm
58 {
59 public:
61  void PrintSelf(ostream& os, vtkIndent indent) VTK_OVERRIDE;
62 
67  static vtkImplicitTextureCoords *New();
68 
70 
73  virtual void SetRFunction(vtkImplicitFunction*);
74  vtkGetObjectMacro(RFunction,vtkImplicitFunction);
76 
78 
81  virtual void SetSFunction(vtkImplicitFunction*);
82  vtkGetObjectMacro(SFunction,vtkImplicitFunction);
84 
86 
89  virtual void SetTFunction(vtkImplicitFunction*);
90  vtkGetObjectMacro(TFunction,vtkImplicitFunction);
92 
94 
98  vtkSetMacro(FlipTexture,int);
99  vtkGetMacro(FlipTexture,int);
100  vtkBooleanMacro(FlipTexture,int);
102 
103 protected:
105  ~vtkImplicitTextureCoords() VTK_OVERRIDE;
106 
107  int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) VTK_OVERRIDE;
108 
112  int FlipTexture;
113 private:
114  vtkImplicitTextureCoords(const vtkImplicitTextureCoords&) VTK_DELETE_FUNCTION;
115  void operator=(const vtkImplicitTextureCoords&) VTK_DELETE_FUNCTION;
116 };
117 
118 #endif
119 
120 
abstract interface for implicit functions
Store vtkAlgorithm input/output information.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
a simple class to control print indentation
Definition: vtkIndent.h:33
vtkSetMacro(IgnoreDriverBugs, bool)
When set known driver bugs are ignored during driver feature detection.
Store zero or more vtkInformation instances.
Superclass for algorithms that produce output of the same type as input.
vtkBooleanMacro(IgnoreDriverBugs, bool)
When set known driver bugs are ignored during driver feature detection.
generate 1D, 2D, or 3D texture coordinates based on implicit function(s)
static vtkDataSetAlgorithm * New()