VTK  9.1.0
vtkExtractPolyDataGeometry.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkExtractPolyDataGeometry.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 =========================================================================*/
63 #ifndef vtkExtractPolyDataGeometry_h
64 #define vtkExtractPolyDataGeometry_h
65 
66 #include "vtkFiltersExtractionModule.h" // For export macro
67 #include "vtkPolyDataAlgorithm.h"
68 
70 
71 class VTKFILTERSEXTRACTION_EXPORT vtkExtractPolyDataGeometry : public vtkPolyDataAlgorithm
72 {
73 public:
75  void PrintSelf(ostream& os, vtkIndent indent) override;
76 
81 
85  vtkMTimeType GetMTime() override;
86 
88 
92  vtkGetObjectMacro(ImplicitFunction, vtkImplicitFunction);
94 
96 
101  vtkSetMacro(ExtractInside, vtkTypeBool);
102  vtkGetMacro(ExtractInside, vtkTypeBool);
103  vtkBooleanMacro(ExtractInside, vtkTypeBool);
105 
107 
111  vtkSetMacro(ExtractBoundaryCells, vtkTypeBool);
112  vtkGetMacro(ExtractBoundaryCells, vtkTypeBool);
113  vtkBooleanMacro(ExtractBoundaryCells, vtkTypeBool);
115 
117 
121  vtkSetMacro(PassPoints, vtkTypeBool);
122  vtkGetMacro(PassPoints, vtkTypeBool);
123  vtkBooleanMacro(PassPoints, vtkTypeBool);
125 
126 protected:
129 
130  // Usual data generation method
132 
137 
138  vtkIdType InsertPointInMap(vtkIdType i, vtkPoints* inPts, vtkPoints* newPts, vtkIdType* pointMap);
139 
140 private:
142  void operator=(const vtkExtractPolyDataGeometry&) = delete;
143 };
144 
146 
150  vtkIdType i, vtkPoints* inPts, vtkPoints* newPts, vtkIdType* pointMap)
151 {
152  double x[3];
153  inPts->GetPoint(i, x);
154  pointMap[i] = newPts->InsertNextPoint(x);
155  return pointMap[i];
156 }
158 
159 #endif
extract vtkPolyData cells that lies either entirely inside or outside of a specified implicit functio...
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkExtractPolyDataGeometry(vtkImplicitFunction *f=nullptr)
vtkIdType InsertPointInMap(vtkIdType i, vtkPoints *inPts, vtkPoints *newPts, vtkIdType *pointMap)
When not passing points, have to use a point map to keep track of things.
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
~vtkExtractPolyDataGeometry() override
vtkMTimeType GetMTime() override
Return the MTime taking into account changes to the implicit function.
virtual void SetImplicitFunction(vtkImplicitFunction *)
Specify the implicit function for inside/outside checks.
static vtkExtractPolyDataGeometry * New()
Construct object with ExtractInside turned on.
abstract interface for implicit functions
a simple class to control print indentation
Definition: vtkIndent.h:113
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
represent and manipulate 3D points
Definition: vtkPoints.h:143
vtkIdType InsertNextPoint(const float x[3])
Insert point into next available slot.
Definition: vtkPoints.h:314
double * GetPoint(vtkIdType id)
Return a pointer to a double point x[3] for a specific id.
Definition: vtkPoints.h:243
Superclass for algorithms that produce only polydata as output.
int vtkTypeBool
Definition: vtkABI.h:69
int vtkIdType
Definition: vtkType.h:332
vtkTypeUInt32 vtkMTimeType
Definition: vtkType.h:287