VTK
vtkExtractRectilinearGrid.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkExtractRectilinearGrid.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 __vtkExtractRectilinearGrid_h
32 #define __vtkExtractRectilinearGrid_h
33 
35 
37 {
38 public:
41  void PrintSelf(ostream& os, vtkIndent indent);
42 
44 
47  vtkSetVector6Macro(VOI,int);
48  vtkGetVectorMacro(VOI,int,6);
50 
52 
57  vtkSetVector3Macro(SampleRate, int);
58  vtkGetVectorMacro(SampleRate, int, 3);
60 
62 
68  vtkSetMacro(IncludeBoundary,int);
69  vtkGetMacro(IncludeBoundary,int);
70  vtkBooleanMacro(IncludeBoundary,int);
72 
73 protected:
76 
80 
81  int VOI[6];
82  int SampleRate[3];
84 
85 private:
86  vtkExtractRectilinearGrid(const vtkExtractRectilinearGrid&); // Not implemented.
87  void operator=(const vtkExtractRectilinearGrid&); // Not implemented.
88 };
89 
90 #endif
91 
92