VTK
vtkProbePolyhedron.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkProbePolyhedron.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 =========================================================================*/
54 #ifndef __vtkProbePolyhedron_h
55 #define __vtkProbePolyhedron_h
56 
57 #include "vtkDataSetAlgorithm.h"
58 #include "vtkDataSetAttributes.h" // needed for vtkDataSetAttributes::FieldList
59 
60 class vtkIdTypeArray;
61 class vtkCharArray;
62 class vtkMaskPoints;
63 
65 {
66 public:
68 
69  static vtkProbePolyhedron *New();
71  void PrintSelf(ostream& os, vtkIndent indent);
73 
75 
77  void SetSource(vtkPolyData *source);
78  vtkPolyData *GetSource();
80 
83  void SetSourceConnection(vtkAlgorithmOutput* algOutput);
84 
86 
89  vtkSetMacro(ProbePointData, int);
90  vtkGetMacro(ProbePointData, int);
91  vtkBooleanMacro(ProbePointData, int);
93 
95 
100  vtkSetMacro(ProbeCellData, int);
101  vtkGetMacro(ProbeCellData, int);
102  vtkBooleanMacro(ProbeCellData, int);
104 
105 protected:
108 
111 
118 
119 private:
120  vtkProbePolyhedron(const vtkProbePolyhedron&); // Not implemented.
121  void operator=(const vtkProbePolyhedron&); // Not implemented.
122 
123 };
124 
125 #endif