VTK  9.3.0
vtkExtractGeometry.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 vtkExtractGeometry_h
44 #define vtkExtractGeometry_h
45 
46 #include "vtkFiltersExtractionModule.h" // For export macro
48 
49 VTK_ABI_NAMESPACE_BEGIN
51 
52 class VTKFILTERSEXTRACTION_EXPORT vtkExtractGeometry : public vtkUnstructuredGridAlgorithm
53 {
54 public:
56  void PrintSelf(ostream& os, vtkIndent indent) override;
57 
62 
66  vtkMTimeType GetMTime() override;
67 
69 
73  vtkGetObjectMacro(ImplicitFunction, vtkImplicitFunction);
75 
77 
82  vtkSetMacro(ExtractInside, vtkTypeBool);
83  vtkGetMacro(ExtractInside, vtkTypeBool);
84  vtkBooleanMacro(ExtractInside, vtkTypeBool);
86 
88 
92  vtkSetMacro(ExtractBoundaryCells, vtkTypeBool);
93  vtkGetMacro(ExtractBoundaryCells, vtkTypeBool);
94  vtkBooleanMacro(ExtractBoundaryCells, vtkTypeBool);
95  vtkSetMacro(ExtractOnlyBoundaryCells, vtkTypeBool);
96  vtkGetMacro(ExtractOnlyBoundaryCells, vtkTypeBool);
97  vtkBooleanMacro(ExtractOnlyBoundaryCells, vtkTypeBool);
99 
100 protected:
103 
104  // Usual data generation method
106 
108 
113 
114 private:
115  vtkExtractGeometry(const vtkExtractGeometry&) = delete;
116  void operator=(const vtkExtractGeometry&) = delete;
117 };
118 
119 VTK_ABI_NAMESPACE_END
120 #endif
extract cells that lie either entirely inside or outside of a specified implicit function
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkMTimeType GetMTime() override
Return the MTime taking into account changes to the implicit function.
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
static vtkExtractGeometry * New()
Construct object with ExtractInside turned on.
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
vtkImplicitFunction * ImplicitFunction
~vtkExtractGeometry() override
vtkTypeBool ExtractBoundaryCells
vtkTypeBool ExtractOnlyBoundaryCells
virtual void SetImplicitFunction(vtkImplicitFunction *)
Specify the implicit function for inside/outside checks.
vtkExtractGeometry(vtkImplicitFunction *f=nullptr)
abstract interface for implicit functions
a simple class to control print indentation
Definition: vtkIndent.h:38
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Superclass for algorithms that produce only unstructured grid as output.
@ info
Definition: vtkX3D.h:376
@ port
Definition: vtkX3D.h:447
int vtkTypeBool
Definition: vtkABI.h:64
vtkTypeUInt32 vtkMTimeType
Definition: vtkType.h:270