VTK
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
dox
Graphics
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 "
vtkPointSetAlgorithm.h
"
31
32
class
VTK_GRAPHICS_EXPORT
vtkExtractDataOverTime
:
public
vtkPointSetAlgorithm
33
{
34
public
:
35
static
vtkExtractDataOverTime
*
New
();
36
vtkTypeMacro(
vtkExtractDataOverTime
,
vtkPointSetAlgorithm
);
37
void
PrintSelf
(ostream& os,
vtkIndent
indent);
38
40
41
vtkSetMacro(PointIndex,
int
);
42
vtkGetMacro(PointIndex,
int
);
44
46
47
vtkGetMacro(NumberOfTimeSteps,
int
);
49
50
protected
:
51
vtkExtractDataOverTime
();
52
~vtkExtractDataOverTime
() {};
53
54
int
RequestInformation(
vtkInformation
*request,
55
vtkInformationVector
**inputVector,
vtkInformationVector
*outputVector);
56
57
int
ProcessRequest
(
vtkInformation
*,
58
vtkInformationVector
**,
59
vtkInformationVector
*);
60
61
int
AllocateOutputData(
vtkPointSet
*input,
vtkPointSet
*output);
62
63
int
PointIndex
;
64
int
CurrentTimeIndex
;
65
int
NumberOfTimeSteps
;
66
67
private
:
68
vtkExtractDataOverTime
(
const
vtkExtractDataOverTime
&);
// Not implemented.
69
void
operator=(
const
vtkExtractDataOverTime
&);
// Not implemented.
70
};
71
72
#endif
73
74
75
Generated on Fri Aug 2 2013 12:19:49 for VTK by
1.8.4