VTK
vtkBlankStructuredGrid.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkBlankStructuredGrid.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 =========================================================================*/
35 #ifndef vtkBlankStructuredGrid_h
36 #define vtkBlankStructuredGrid_h
37 
38 #include "vtkFiltersGeneralModule.h" // For export macro
40 
42 {
43 public:
46  void PrintSelf(ostream& os, vtkIndent indent);
47 
49 
51  vtkSetMacro(MinBlankingValue,double);
52  vtkGetMacro(MinBlankingValue,double);
54 
56 
58  vtkSetMacro(MaxBlankingValue,double);
59  vtkGetMacro(MaxBlankingValue,double);
61 
63 
66  vtkSetStringMacro(ArrayName);
67  vtkGetStringMacro(ArrayName);
69 
71 
74  vtkSetMacro(ArrayId,int);
75  vtkGetMacro(ArrayId,int);
77 
79 
81  vtkSetClampMacro(Component,int,0,VTK_INT_MAX);
82  vtkGetMacro(Component,int);
84 
85 protected:
88 
90 
93  char *ArrayName;
94  int ArrayId;
95  int Component;
96 
97 private:
98  vtkBlankStructuredGrid(const vtkBlankStructuredGrid&); // Not implemented.
99  void operator=(const vtkBlankStructuredGrid&); // Not implemented.
100 };
101 
102 #endif
VTK_INT_MAX
#define VTK_INT_MAX
Definition: vtkType.h:132
vtkStructuredGridAlgorithm.h
vtkBlankStructuredGrid::Component
int Component
Definition: vtkBlankStructuredGrid.h:95
vtkBlankStructuredGrid::New
static vtkBlankStructuredGrid * New()
vtkStructuredGridAlgorithm
Superclass for algorithms that produce only structured grid as output.
Definition: vtkStructuredGridAlgorithm.h:41
vtkInformationVector
Store zero or more vtkInformation instances.
Definition: vtkInformationVector.h:41
vtkBlankStructuredGrid::RequestData
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
vtkBlankStructuredGrid::ArrayName
char * ArrayName
Definition: vtkBlankStructuredGrid.h:93
vtkTypeMacro
#define vtkTypeMacro(thisClass, superclass)
Definition: vtkSetGet.h:642
vtkBlankStructuredGrid::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent)
vtkBlankStructuredGrid::~vtkBlankStructuredGrid
~vtkBlankStructuredGrid()
vtkSetClampMacro
#define vtkSetClampMacro(name, type, min, max)
Definition: vtkSetGet.h:143
vtkBlankStructuredGrid::ArrayId
int ArrayId
Definition: vtkBlankStructuredGrid.h:94
vtkFiltersGeneralModule.h
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:39
vtkSetStringMacro
#define vtkSetStringMacro(name)
Definition: vtkSetGet.h:104
vtkBlankStructuredGrid::MinBlankingValue
double MinBlankingValue
Definition: vtkBlankStructuredGrid.h:91
VTKFILTERSGENERAL_EXPORT
#define VTKFILTERSGENERAL_EXPORT
Definition: vtkFiltersGeneralModule.h:15
vtkGetMacro
#define vtkGetMacro(name, type)
Definition: vtkSetGet.h:93
vtkGetStringMacro
vtkGetStringMacro(ExtensionsString)
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:86
vtkSetMacro
vtkSetMacro(IgnoreDriverBugs, bool)
vtkBlankStructuredGrid::vtkBlankStructuredGrid
vtkBlankStructuredGrid()
vtkBlankStructuredGrid::MaxBlankingValue
double MaxBlankingValue
Definition: vtkBlankStructuredGrid.h:92
vtkBlankStructuredGrid
translate point attribute data into a blanking field
Definition: vtkBlankStructuredGrid.h:42