VTK  9.3.0
vtkSimpleElevationFilter.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#ifndef vtkSimpleElevationFilter_h
32#define vtkSimpleElevationFilter_h
33
34#include "vtkDataSetAlgorithm.h"
35#include "vtkFiltersCoreModule.h" // For export macro
36
37VTK_ABI_NAMESPACE_BEGIN
38class VTKFILTERSCORE_EXPORT vtkSimpleElevationFilter : public vtkDataSetAlgorithm
39{
40public:
42 void PrintSelf(ostream& os, vtkIndent indent) override;
43
48
50
53 vtkSetVector3Macro(Vector, double);
54 vtkGetVectorMacro(Vector, double, 3);
56
57protected:
59 ~vtkSimpleElevationFilter() override = default;
60
62 double Vector[3];
63
64private:
66 void operator=(const vtkSimpleElevationFilter&) = delete;
67};
68
69VTK_ABI_NAMESPACE_END
70#endif
Superclass for algorithms that produce output of the same type as input.
a simple class to control print indentation
Definition vtkIndent.h:29
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
generate scalars along a specified direction
~vtkSimpleElevationFilter() override=default
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called within ProcessRequest when a request asks the algorithm to do its work.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkSimpleElevationFilter * New()
Construct object with Vector=(0,0,1).