VTK  9.1.0
vtkBooleanOperationPolyDataFilter.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkBooleanOperationPolyDataFilter.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=========================================================================*/
46#ifndef vtkBooleanOperationPolyDataFilter_h
47#define vtkBooleanOperationPolyDataFilter_h
48
49#include "vtkFiltersGeneralModule.h" // For export macro
51
52#include "vtkDataSetAttributes.h" // Needed for CopyCells() method
53
54class vtkIdList;
55
56class VTKFILTERSGENERAL_EXPORT vtkBooleanOperationPolyDataFilter : public vtkPolyDataAlgorithm
57{
58public:
63
65
66 void PrintSelf(ostream& os, vtkIndent indent) override;
67
69 {
70 VTK_UNION = 0,
72 VTK_DIFFERENCE
73 };
74
76
79 vtkSetClampMacro(Operation, int, VTK_UNION, VTK_DIFFERENCE);
80 vtkGetMacro(Operation, int);
81 void SetOperationToUnion() { this->SetOperation(VTK_UNION); }
82 void SetOperationToIntersection() { this->SetOperation(VTK_INTERSECTION); }
83 void SetOperationToDifference() { this->SetOperation(VTK_DIFFERENCE); }
85
87
91 vtkSetMacro(ReorientDifferenceCells, vtkTypeBool);
92 vtkGetMacro(ReorientDifferenceCells, vtkTypeBool);
93 vtkBooleanMacro(ReorientDifferenceCells, vtkTypeBool);
95
97
101 vtkSetMacro(Tolerance, double);
102 vtkGetMacro(Tolerance, double);
104
105protected:
108
112 void SortPolyData(vtkPolyData* input, vtkIdList* intersectionList, vtkIdList* unionList);
113
116
117private:
119 void operator=(const vtkBooleanOperationPolyDataFilter&) = delete;
120
126 void CopyCells(vtkPolyData* in, vtkPolyData* out, int idx,
128 vtkIdList* cellIds, bool reverseCells);
129
134 double Tolerance;
135
140 int Operation;
141
143
147 vtkTypeBool ReorientDifferenceCells;
149};
150
151#endif
Computes the boundary of the union, intersection, or difference volume computed from the volumes defi...
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
int FillInputPortInformation(int, vtkInformation *) override
Fill the input port information objects for this algorithm.
void SortPolyData(vtkPolyData *input, vtkIdList *intersectionList, vtkIdList *unionList)
Labels triangles in mesh as part of the intersection or union surface.
void SetOperationToIntersection()
Set the boolean operation to perform.
static vtkBooleanOperationPolyDataFilter * New()
Construct object that computes the boolean surface.
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
void SetOperationToUnion()
Set the boolean operation to perform.
void SetOperationToDifference()
Set the boolean operation to perform.
helps manage arrays from multiple vtkDataSetAttributes.
list of point or cell ids
Definition: vtkIdList.h:40
a simple class to control print indentation
Definition: vtkIndent.h:43
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Superclass for algorithms that produce only polydata as output.
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition: vtkPolyData.h:95
int vtkTypeBool
Definition: vtkABI.h:69