VTK  9.3.20240425
vtkExtractDataOverTime.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-License-Identifier: BSD-3-Clause
16#ifndef vtkExtractDataOverTime_h
17#define vtkExtractDataOverTime_h
18
19#include "vtkFiltersExtractionModule.h" // For export macro
21
22VTK_ABI_NAMESPACE_BEGIN
23class VTKFILTERSEXTRACTION_EXPORT vtkExtractDataOverTime : public vtkPointSetAlgorithm
24{
25public:
28 void PrintSelf(ostream& os, vtkIndent indent) override;
29
31
34 vtkSetMacro(PointIndex, int);
35 vtkGetMacro(PointIndex, int);
37
39
42 vtkGetMacro(NumberOfTimeSteps, int);
44
45protected:
47 ~vtkExtractDataOverTime() override = default;
48
50 vtkInformationVector* outputVector);
51
54
56
60
61private:
63 void operator=(const vtkExtractDataOverTime&) = delete;
64};
65
66VTK_ABI_NAMESPACE_END
67#endif
extract point data from a time sequence for a specified point id.
vtkTypeBool ProcessRequest(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
Upstream/Downstream requests form the generalized interface through which executives invoke a algorit...
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
int RequestInformation(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
static vtkExtractDataOverTime * New()
int AllocateOutputData(vtkPointSet *input, vtkPointSet *output)
~vtkExtractDataOverTime() override=default
a simple class to control print indentation
Definition vtkIndent.h:108
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Superclass for algorithms that produce output of the same type as input.
concrete class for storing a set of points
Definition vtkPointSet.h:98
int vtkTypeBool
Definition vtkABI.h:64