VTK  9.2.6
vtkElevationFilter.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkElevationFilter.h
5
6 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7 All rights reserved.
8 See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9
10 This software is distributed WITHOUT ANY WARRANTY; without even
11 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12 PURPOSE. See the above copyright notice for more information.
13
14=========================================================================*/
53#ifndef vtkElevationFilter_h
54#define vtkElevationFilter_h
55
56#include "vtkDataSetAlgorithm.h"
57#include "vtkFiltersCoreModule.h" // For export macro
58
59class VTKFILTERSCORE_EXPORT vtkElevationFilter : public vtkDataSetAlgorithm
60{
61public:
64 void PrintSelf(ostream& os, vtkIndent indent) override;
65
67
71 vtkSetVector3Macro(LowPoint, double);
72 vtkGetVectorMacro(LowPoint, double, 3);
74
76
80 vtkSetVector3Macro(HighPoint, double);
81 vtkGetVectorMacro(HighPoint, double, 3);
83
85
88 vtkSetVector2Macro(ScalarRange, double);
89 vtkGetVectorMacro(ScalarRange, double, 2);
91
92protected:
95
97
98 double LowPoint[3];
99 double HighPoint[3];
100 double ScalarRange[2];
101
102private:
103 vtkElevationFilter(const vtkElevationFilter&) = delete;
104 void operator=(const vtkElevationFilter&) = delete;
105};
106
107#endif
Superclass for algorithms that produce output of the same type as input.
generate scalars along a specified direction
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called within ProcessRequest when a request asks the algorithm to do its work.
~vtkElevationFilter() override
static vtkElevationFilter * New()
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:49
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.