VTK
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 =========================================================================*/
31 #ifndef vtkElevationFilter_h
32 #define vtkElevationFilter_h
33 
34 #include "vtkFiltersCoreModule.h" // For export macro
35 #include "vtkDataSetAlgorithm.h"
36 
38 {
39 public:
42  void PrintSelf(ostream& os, vtkIndent indent);
43 
45 
47  vtkSetVector3Macro(LowPoint,double);
48  vtkGetVectorMacro(LowPoint,double,3);
50 
52 
54  vtkSetVector3Macro(HighPoint,double);
55  vtkGetVectorMacro(HighPoint,double,3);
57 
59 
60  vtkSetVector2Macro(ScalarRange,double);
61  vtkGetVectorMacro(ScalarRange,double,2);
63 
64 protected:
67 
71 
72  double LowPoint[3];
73  double HighPoint[3];
74  double ScalarRange[2];
75 private:
76  vtkElevationFilter(const vtkElevationFilter&); // Not implemented.
77  void operator=(const vtkElevationFilter&); // Not implemented.
78 };
79 
80 #endif
vtkSetVector2Macro
#define vtkSetVector2Macro(name, type)
Definition: vtkSetGet.h:254
vtkSetVector3Macro
#define vtkSetVector3Macro(name, type)
Definition: vtkSetGet.h:287
vtkInformationVector
Store zero or more vtkInformation instances.
Definition: vtkInformationVector.h:41
vtkTypeMacro
#define vtkTypeMacro(thisClass, superclass)
Definition: vtkSetGet.h:642
vtkElevationFilter::RequestData
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
vtkElevationFilter
generate scalars along a specified direction
Definition: vtkElevationFilter.h:38
vtkGetVectorMacro
#define vtkGetVectorMacro(name, type, count)
Definition: vtkSetGet.h:424
vtkElevationFilter::vtkElevationFilter
vtkElevationFilter()
vtkFiltersCoreModule.h
vtkElevationFilter::New
static vtkElevationFilter * New()
vtkDataSetAlgorithm
Superclass for algorithms that produce output of the same type as input.
Definition: vtkDataSetAlgorithm.h:51
VTKFILTERSCORE_EXPORT
#define VTKFILTERSCORE_EXPORT
Definition: vtkFiltersCoreModule.h:15
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:39
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:86
vtkDataSetAlgorithm.h
vtkElevationFilter::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent)
vtkElevationFilter::~vtkElevationFilter
~vtkElevationFilter()