VTK
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
dox
Graphics
vtkTransformFilter.h
Go to the documentation of this file.
1
/*=========================================================================
2
3
Program: Visualization Toolkit
4
Module: vtkTransformFilter.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
=========================================================================*/
40
#ifndef __vtkTransformFilter_h
41
#define __vtkTransformFilter_h
42
43
#include "
vtkPointSetAlgorithm.h
"
44
45
class
vtkAbstractTransform
;
46
47
class
VTK_GRAPHICS_EXPORT
vtkTransformFilter
:
public
vtkPointSetAlgorithm
48
{
49
public
:
50
static
vtkTransformFilter
*
New
();
51
vtkTypeMacro(
vtkTransformFilter
,
vtkPointSetAlgorithm
);
52
void
PrintSelf
(ostream& os,
vtkIndent
indent);
53
55
unsigned
long
GetMTime
();
56
58
59
virtual
void
SetTransform(
vtkAbstractTransform
*);
60
vtkGetObjectMacro(
Transform
,
vtkAbstractTransform
);
62
63
protected
:
64
vtkTransformFilter
();
65
~
vtkTransformFilter
();
66
67
int
RequestData
(
vtkInformation
*,
vtkInformationVector
**,
vtkInformationVector
*);
68
vtkAbstractTransform
*
Transform
;
69
private
:
70
vtkTransformFilter
(
const
vtkTransformFilter
&);
// Not implemented.
71
void
operator=(
const
vtkTransformFilter
&);
// Not implemented.
72
};
73
74
#endif
Generated on Fri Aug 2 2013 12:19:57 for VTK by
1.8.4