VTK  9.6.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
30
31#ifndef vtkSimpleElevationFilter_h
32#define vtkSimpleElevationFilter_h
33
34#include "vtkDataSetAlgorithm.h"
35#include "vtkFiltersCoreModule.h" // For export macro
36#include "vtkWrappingHints.h" // For VTK_MARSHALAUTO
37
38VTK_ABI_NAMESPACE_BEGIN
40{
41public:
43 void PrintSelf(ostream& os, vtkIndent indent) override;
44
49
51
54 vtkSetVector3Macro(Vector, double);
55 vtkGetVectorMacro(Vector, double, 3);
57
58protected:
60 ~vtkSimpleElevationFilter() override = default;
61
63 double Vector[3];
64
65private:
67 void operator=(const vtkSimpleElevationFilter&) = delete;
68};
69
70VTK_ABI_NAMESPACE_END
71#endif
a simple class to control print indentation
Definition vtkIndent.h:29
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