Go to the documentation of this file.
37 #ifndef vtkBooleanOperationPolyDataFilter_h
38 #define vtkBooleanOperationPolyDataFilter_h
40 #include "vtkFiltersGeneralModule.h"
71 vtkSetClampMacro( Operation,
int, VTK_UNION, VTK_DIFFERENCE );
72 vtkGetMacro( Operation,
int );
74 { this->SetOperation( VTK_UNION ); }
76 { this->SetOperation( VTK_INTERSECTION ); }
78 { this->SetOperation( VTK_DIFFERENCE ); }
96 vtkSetMacro(Tolerance,
double);
97 vtkGetMacro(Tolerance,
double);
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.
static vtkBooleanOperationPolyDataFilter * New()
Construct object that computes the boolean surface.
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
void SetOperationToDifference()
helps manage arrays from multiple vtkDataSetAttributes.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
a simple class to control print indentation
list of point or cell ids
void SetOperationToUnion()
void SetOperationToIntersection()
concrete dataset represents vertices, lines, polygons, and triangle strips
vtkBooleanOperationPolyDataFilter()
~vtkBooleanOperationPolyDataFilter() override
Computes the boundary of the union, intersection, or difference volume computed from the volumes defi...
Superclass for algorithms that produce only polydata as output.