VTK
dox
Filters
Core
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
=========================================================================*/
44
#ifndef vtkElevationFilter_h
45
#define vtkElevationFilter_h
46
47
#include "vtkFiltersCoreModule.h"
// For export macro
48
#include "
vtkDataSetAlgorithm.h
"
49
50
class
VTKFILTERSCORE_EXPORT
vtkElevationFilter
:
public
vtkDataSetAlgorithm
51
{
52
public
:
53
static
vtkElevationFilter
*
New
();
54
vtkTypeMacro(
vtkElevationFilter
,
vtkDataSetAlgorithm
);
55
void
PrintSelf
(ostream& os,
vtkIndent
indent)
override
;
56
58
62
vtkSetVector3Macro(LowPoint,
double
);
63
vtkGetVectorMacro(LowPoint,
double
,3);
65
67
71
vtkSetVector3Macro(HighPoint,
double
);
72
vtkGetVectorMacro(HighPoint,
double
,3);
74
76
79
vtkSetVector2Macro(ScalarRange,
double
);
80
vtkGetVectorMacro(ScalarRange,
double
,2);
82
83
protected
:
84
vtkElevationFilter
();
85
~vtkElevationFilter
()
override
;
86
87
int
RequestData
(
vtkInformation
*,
88
vtkInformationVector
**,
89
vtkInformationVector
*)
override
;
90
91
double
LowPoint[3];
92
double
HighPoint[3];
93
double
ScalarRange[2];
94
95
private
:
96
vtkElevationFilter
(
const
vtkElevationFilter
&) =
delete
;
97
void
operator=(
const
vtkElevationFilter
&) =
delete
;
98
};
99
100
#endif
vtkElevationFilter::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkInformationVector
Store zero or more vtkInformation instances.
Definition:
vtkInformationVector.h:42
vtkElevationFilter
generate scalars along a specified direction
Definition:
vtkElevationFilter.h:51
vtkElevationFilter::vtkElevationFilter
vtkElevationFilter()
vtkElevationFilter::New
static vtkElevationFilter * New()
vtkDataSetAlgorithm
Superclass for algorithms that produce output of the same type as input.
Definition:
vtkDataSetAlgorithm.h:49
vtkIndent
a simple class to control print indentation
Definition:
vtkIndent.h:40
vtkElevationFilter::~vtkElevationFilter
~vtkElevationFilter() override
vtkInformation
Store vtkAlgorithm input/output information.
Definition:
vtkInformation.h:87
vtkDataSetAlgorithm.h
vtkElevationFilter::RequestData
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called within ProcessRequest when a request asks the algorithm to do its work.
Generated by
1.8.18