VTK  9.5.20251120
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
49
50#ifndef vtkSimpleElevationFilter_h
51#define vtkSimpleElevationFilter_h
52
53#include "vtkDataSetAlgorithm.h"
54#include "vtkFiltersCoreModule.h" // For export macro
55#include "vtkWrappingHints.h" // For VTK_MARSHALAUTO
56
57VTK_ABI_NAMESPACE_BEGIN
59{
60public:
62 void PrintSelf(ostream& os, vtkIndent indent) override;
63
68
70
73 vtkSetVector3Macro(Vector, double);
74 vtkGetVectorMacro(Vector, double, 3);
76
77protected:
79 ~vtkSimpleElevationFilter() override = default;
80
82 double Vector[3];
83
84private:
86 void operator=(const vtkSimpleElevationFilter&) = delete;
87};
88
89VTK_ABI_NAMESPACE_END
90#endif
a simple class to control print indentation
Definition vtkIndent.h:108
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
~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).
#define VTK_MARSHALAUTO