VTK  9.3.20240418
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
50 #ifndef vtkSimpleElevationFilter_h
51 #define vtkSimpleElevationFilter_h
52 
53 #include "vtkDataSetAlgorithm.h"
54 #include "vtkFiltersCoreModule.h" // For export macro
55 
56 VTK_ABI_NAMESPACE_BEGIN
57 class VTKFILTERSCORE_EXPORT vtkSimpleElevationFilter : public vtkDataSetAlgorithm
58 {
59 public:
61  void PrintSelf(ostream& os, vtkIndent indent) override;
62 
67 
69 
72  vtkSetVector3Macro(Vector, double);
73  vtkGetVectorMacro(Vector, double, 3);
75 
76 protected:
78  ~vtkSimpleElevationFilter() override = default;
79 
81  double Vector[3];
82 
83 private:
85  void operator=(const vtkSimpleElevationFilter&) = delete;
86 };
87 
88 VTK_ABI_NAMESPACE_END
89 #endif
Superclass for algorithms that produce output of the same type as input.
a simple class to control print indentation
Definition: vtkIndent.h:108
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
generate scalars along a specified direction
~vtkSimpleElevationFilter() override=default
static vtkSimpleElevationFilter * New()
Construct object with Vector=(0,0,1).
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.