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 =========================================================================*/
51 #ifndef __vtkImplicitTextureCoords_h
52 #define __vtkImplicitTextureCoords_h
53 
54 #include "vtkDataSetAlgorithm.h"
55 
57 
59 {
60 public:
62  void PrintSelf(ostream& os, vtkIndent indent);
63 
66  static vtkImplicitTextureCoords *New();
67 
69 
70  virtual void SetRFunction(vtkImplicitFunction*);
71  vtkGetObjectMacro(RFunction,vtkImplicitFunction);
73 
75 
76  virtual void SetSFunction(vtkImplicitFunction*);
77  vtkGetObjectMacro(SFunction,vtkImplicitFunction);
79 
81 
82  virtual void SetTFunction(vtkImplicitFunction*);
83  vtkGetObjectMacro(TFunction,vtkImplicitFunction);
85 
87 
89  vtkSetMacro(FlipTexture,int);
90  vtkGetMacro(FlipTexture,int);
91  vtkBooleanMacro(FlipTexture,int);
93 
94 protected:
97 
99 
104 private:
105  vtkImplicitTextureCoords(const vtkImplicitTextureCoords&); // Not implemented.
106  void operator=(const vtkImplicitTextureCoords&); // Not implemented.
107 };
108 
109 #endif
110 
111 
abstract interface for implicit functions
#define VTK_GRAPHICS_EXPORT
Store vtkAlgorithm input/output information.
a simple class to control print indentation
Definition: vtkIndent.h:37
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
Store zero or more vtkInformation instances.
void PrintSelf(ostream &os, vtkIndent indent)
Superclass for algorithms that produce output of the same type as input.
generate 1D, 2D, or 3D texture coordinates based on implicit function(s)
static vtkDataSetAlgorithm * New()