VTK
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
dox
Graphics
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
56
class
vtkImplicitFunction
;
57
58
class
VTK_GRAPHICS_EXPORT
vtkImplicitTextureCoords
:
public
vtkDataSetAlgorithm
59
{
60
public
:
61
vtkTypeMacro(
vtkImplicitTextureCoords
,
vtkDataSetAlgorithm
);
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
:
95
vtkImplicitTextureCoords
();
96
~
vtkImplicitTextureCoords
();
97
98
int
RequestData
(
vtkInformation
*,
vtkInformationVector
**,
vtkInformationVector
*);
99
100
vtkImplicitFunction
*
RFunction
;
101
vtkImplicitFunction
*
SFunction
;
102
vtkImplicitFunction
*
TFunction
;
103
int
FlipTexture
;
104
private
:
105
vtkImplicitTextureCoords
(
const
vtkImplicitTextureCoords
&);
// Not implemented.
106
void
operator=(
const
vtkImplicitTextureCoords
&);
// Not implemented.
107
};
108
109
#endif
110
111
Generated on Fri Aug 2 2013 12:19:49 for VTK by
1.8.4