VTK
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
dox
Filters
Extraction
vtkExtractDataOverTime.h
Go to the documentation of this file.
1
/*=========================================================================
2
3
Program: Visualization Toolkit
4
Module: vtkExtractDataOverTime.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
=========================================================================*/
27
#ifndef __vtkExtractDataOverTime_h
28
#define __vtkExtractDataOverTime_h
29
30
#include "vtkFiltersExtractionModule.h"
// For export macro
31
#include "
vtkPointSetAlgorithm.h
"
32
33
class
VTKFILTERSEXTRACTION_EXPORT
vtkExtractDataOverTime
:
public
vtkPointSetAlgorithm
34
{
35
public
:
36
static
vtkExtractDataOverTime
*
New
();
37
vtkTypeMacro(
vtkExtractDataOverTime
,
vtkPointSetAlgorithm
);
38
void
PrintSelf
(ostream& os,
vtkIndent
indent);
39
41
42
vtkSetMacro(PointIndex,
int
);
43
vtkGetMacro(PointIndex,
int
);
45
47
48
vtkGetMacro(NumberOfTimeSteps,
int
);
50
51
protected
:
52
vtkExtractDataOverTime
();
53
~vtkExtractDataOverTime
() {};
54
55
int
RequestInformation(
vtkInformation
*request,
56
vtkInformationVector
**inputVector,
vtkInformationVector
*outputVector);
57
58
int
ProcessRequest
(
vtkInformation
*,
59
vtkInformationVector
**,
60
vtkInformationVector
*);
61
62
int
AllocateOutputData(
vtkPointSet
*input,
vtkPointSet
*output);
63
64
int
PointIndex
;
65
int
CurrentTimeIndex
;
66
int
NumberOfTimeSteps
;
67
68
private
:
69
vtkExtractDataOverTime
(
const
vtkExtractDataOverTime
&);
// Not implemented.
70
void
operator=(
const
vtkExtractDataOverTime
&);
// Not implemented.
71
};
72
73
#endif
74
75
76
Generated on Thu May 24 2012 22:22:14 for VTK by
1.8.1