VTK  9.3.1
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 
37 VTK_ABI_NAMESPACE_BEGIN
38 class VTKFILTERSCORE_EXPORT vtkSimpleElevationFilter : public vtkDataSetAlgorithm
39 {
40 public:
42  void PrintSelf(ostream& os, vtkIndent indent) override;
43 
47  static vtkSimpleElevationFilter* New();
48 
50 
53  vtkSetVector3Macro(Vector, double);
54  vtkGetVectorMacro(Vector, double, 3);
56 
57 protected:
59  ~vtkSimpleElevationFilter() override = default;
60 
62  double Vector[3];
63 
64 private:
66  void operator=(const vtkSimpleElevationFilter&) = delete;
67 };
68 
69 VTK_ABI_NAMESPACE_END
70 #endif
Store vtkAlgorithm input/output information.
generate scalars along a specified direction
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:28
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called within ProcessRequest when a request asks the algorithm to do its work.
Store zero or more vtkInformation instances.
Superclass for algorithms that produce output of the same type as input.
static vtkDataSetAlgorithm * New()