VTK
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 =========================================================================*/
29 #ifndef vtkSimpleElevationFilter_h
30 #define vtkSimpleElevationFilter_h
31 
32 #include "vtkFiltersCoreModule.h" // For export macro
33 #include "vtkDataSetAlgorithm.h"
34 
36 {
37 public:
39  void PrintSelf(ostream& os, vtkIndent indent);
40 
43 
45 
46  vtkSetVector3Macro(Vector,double);
47  vtkGetVectorMacro(Vector,double,3);
49 
50 protected:
53 
55  double Vector[3];
56 private:
57  vtkSimpleElevationFilter(const vtkSimpleElevationFilter&); // Not implemented.
58  void operator=(const vtkSimpleElevationFilter&); // Not implemented.
59 };
60 
61 #endif
62 
63 
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
vtkGetVectorMacro
#define vtkGetVectorMacro(name, type, count)
Definition: vtkSetGet.h:424
vtkSimpleElevationFilter::RequestData
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
vtkFiltersCoreModule.h
vtkDataSetAlgorithm
Superclass for algorithms that produce output of the same type as input.
Definition: vtkDataSetAlgorithm.h:51
vtkSimpleElevationFilter::New
static vtkSimpleElevationFilter * New()
VTKFILTERSCORE_EXPORT
#define VTKFILTERSCORE_EXPORT
Definition: vtkFiltersCoreModule.h:15
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:39
vtkSimpleElevationFilter::vtkSimpleElevationFilter
vtkSimpleElevationFilter()
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:86
vtkSimpleElevationFilter::~vtkSimpleElevationFilter
~vtkSimpleElevationFilter()
Definition: vtkSimpleElevationFilter.h:52
vtkDataSetAlgorithm.h
vtkSimpleElevationFilter::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent)
vtkSimpleElevationFilter
generate scalars along a specified direction
Definition: vtkSimpleElevationFilter.h:36