VTK  9.3.1
vtkProbePolyhedron.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2 // SPDX-License-Identifier: BSD-3-Clause
43 #ifndef vtkProbePolyhedron_h
44 #define vtkProbePolyhedron_h
45 
46 #include "vtkDataSetAlgorithm.h"
47 #include "vtkDataSetAttributes.h" // needed for vtkDataSetAttributes::FieldList
48 #include "vtkFiltersGeneralModule.h" // For export macro
49 
50 VTK_ABI_NAMESPACE_BEGIN
51 class vtkIdTypeArray;
52 class vtkCharArray;
53 class vtkMaskPoints;
54 
55 class VTKFILTERSGENERAL_EXPORT vtkProbePolyhedron : public vtkDataSetAlgorithm
56 {
57 public:
59 
62  static vtkProbePolyhedron* New();
64  void PrintSelf(ostream& os, vtkIndent indent) override;
66 
68 
72  void SetSourceData(vtkPolyData* source);
73  vtkPolyData* GetSource();
75 
80  void SetSourceConnection(vtkAlgorithmOutput* algOutput);
81 
83 
88  vtkSetMacro(ProbePointData, vtkTypeBool);
89  vtkGetMacro(ProbePointData, vtkTypeBool);
90  vtkBooleanMacro(ProbePointData, vtkTypeBool);
92 
94 
101  vtkSetMacro(ProbeCellData, vtkTypeBool);
102  vtkGetMacro(ProbeCellData, vtkTypeBool);
103  vtkBooleanMacro(ProbeCellData, vtkTypeBool);
105 
106 protected:
108  ~vtkProbePolyhedron() override;
109 
112 
116 
117 private:
118  vtkProbePolyhedron(const vtkProbePolyhedron&) = delete;
119  void operator=(const vtkProbePolyhedron&) = delete;
120 };
121 
122 VTK_ABI_NAMESPACE_END
123 #endif
probe/interpolate data values in the interior, exterior or of the surface of a closed, manifold polyhedron
Store vtkAlgorithm input/output information.
dynamic, self-adjusting array of vtkIdType
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition: vtkPolyData.h:79
Proxy object to connect input/output ports.
int vtkTypeBool
Definition: vtkABI.h:64
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
dynamic, self-adjusting array of char
Definition: vtkCharArray.h:40
a simple class to control print indentation
Definition: vtkIndent.h:28
selectively filter points
Definition: vtkMaskPoints.h:29
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called within ProcessRequest when a request asks the algorithm to do its work.
boost::graph_traits< vtkGraph * >::vertex_descriptor source(boost::graph_traits< vtkGraph * >::edge_descriptor e, vtkGraph *)
virtual int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called within ProcessRequest when each filter in the pipeline decides what portion of its inp...
virtual int RequestInformation(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called within ProcessRequest when a request asks for Information.
Store zero or more vtkInformation instances.
Superclass for algorithms that produce output of the same type as input.
static vtkDataSetAlgorithm * New()