VTK  9.1.0
vtkSimpleElevationFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkSimpleElevationFilter.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 =========================================================================*/
59 #ifndef vtkSimpleElevationFilter_h
60 #define vtkSimpleElevationFilter_h
61 
62 #include "vtkDataSetAlgorithm.h"
63 #include "vtkFiltersCoreModule.h" // For export macro
64 
65 class VTKFILTERSCORE_EXPORT vtkSimpleElevationFilter : public vtkDataSetAlgorithm
66 {
67 public:
69  void PrintSelf(ostream& os, vtkIndent indent) override;
70 
75 
77 
80  vtkSetVector3Macro(Vector, double);
81  vtkGetVectorMacro(Vector, double, 3);
83 
84 protected:
86  ~vtkSimpleElevationFilter() override = default;
87 
89  double Vector[3];
90 
91 private:
93  void operator=(const vtkSimpleElevationFilter&) = delete;
94 };
95 
96 #endif
vtkInformationVector
Store zero or more vtkInformation instances.
Definition: vtkInformationVector.h:145
vtkSimpleElevationFilter::RequestData
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called within ProcessRequest when a request asks the algorithm to do its work.
vtkDataSetAlgorithm
Superclass for algorithms that produce output of the same type as input.
Definition: vtkDataSetAlgorithm.h:49
vtkSimpleElevationFilter::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkSimpleElevationFilter::New
static vtkSimpleElevationFilter * New()
Construct object with Vector=(0,0,1).
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:113
vtkSimpleElevationFilter::vtkSimpleElevationFilter
vtkSimpleElevationFilter()
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:183
vtkDataSetAlgorithm.h
vtkSimpleElevationFilter::~vtkSimpleElevationFilter
~vtkSimpleElevationFilter() override=default
vtkSimpleElevationFilter
generate scalars along a specified direction
Definition: vtkSimpleElevationFilter.h:66