VTK  9.6.1
vtkElevationFilter.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
31
32#ifndef vtkElevationFilter_h
33#define vtkElevationFilter_h
34
35#include "vtkDataSetAlgorithm.h"
36#include "vtkFiltersCoreModule.h" // For export macro
37#include "vtkWrappingHints.h" // For VTK_MARSHALAUTO
38
39VTK_ABI_NAMESPACE_BEGIN
40class VTKFILTERSCORE_EXPORT VTK_MARSHALAUTO vtkElevationFilter : public vtkDataSetAlgorithm
41{
42public:
45 void PrintSelf(ostream& os, vtkIndent indent) override;
46
48
52 vtkSetVector3Macro(LowPoint, double);
53 vtkGetVectorMacro(LowPoint, double, 3);
55
57
61 vtkSetVector3Macro(HighPoint, double);
62 vtkGetVectorMacro(HighPoint, double, 3);
64
66
69 vtkSetVector2Macro(ScalarRange, double);
70 vtkGetVectorMacro(ScalarRange, double, 2);
72
73protected:
76
78
79 double LowPoint[3];
80 double HighPoint[3];
81 double ScalarRange[2];
82
83private:
85 void operator=(const vtkElevationFilter&) = delete;
86};
87
88VTK_ABI_NAMESPACE_END
89#endif
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called within ProcessRequest when a request asks the algorithm to do its work.
~vtkElevationFilter() override
static vtkElevationFilter * New()
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
a simple class to control print indentation
Definition vtkIndent.h:29
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
#define VTK_MARSHALAUTO
#define vtkElevationFilter