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
40 #ifndef vtkSimpleElevationFilter_h
41 #define vtkSimpleElevationFilter_h
42 
43 #include "vtkDataSetAlgorithm.h"
44 #include "vtkFiltersCoreModule.h" // For export macro
45 
46 VTK_ABI_NAMESPACE_BEGIN
47 class VTKFILTERSCORE_EXPORT vtkSimpleElevationFilter : public vtkDataSetAlgorithm
48 {
49 public:
51  void PrintSelf(ostream& os, vtkIndent indent) override;
52 
57 
59 
62  vtkSetVector3Macro(Vector, double);
63  vtkGetVectorMacro(Vector, double, 3);
65 
66 protected:
68  ~vtkSimpleElevationFilter() override = default;
69 
71  double Vector[3];
72 
73 private:
75  void operator=(const vtkSimpleElevationFilter&) = delete;
76 };
77 
78 VTK_ABI_NAMESPACE_END
79 #endif
Superclass for algorithms that produce output of the same type as input.
a simple class to control print indentation
Definition: vtkIndent.h:38
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.