1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204
|
/*=========================================================================
Program: Visualization Toolkit
Module: vtkIntersectionPolyDataFilter.h
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
/**
* @class vtkIntersectionPolyDataFilter
*
*
* vtkIntersectionPolyDataFilter computes the intersection between two
* vtkPolyData objects. The first output is a set of lines that marks
* the intersection of the input vtkPolyData objects. This contains five
* different attached data arrays:
*
* SurfaceID: Point data array that contains information about the origin
* surface of each point
*
* Input0CellID: Cell data array that contains the original
* cell ID number on the first input mesh
*
* Input1CellID: Cell data array that contains the original
* cell ID number on the second input mesh
*
* NewCell0ID: Cell data array that contains information about which cells
* of the remeshed first input surface it touches (If split)
*
* NewCell1ID: Cell data array that contains information about which cells
* on the remeshed second input surface it touches (If split)
*
* The second and third outputs are the first and second input vtkPolyData,
* respectively. Optionally, the two output vtkPolyData can be split
* along the intersection lines by remeshing. Optionally, the surface
* can be cleaned and checked at the end of the remeshing.
* If the meshes are split, The output vtkPolyDatas contain three possible
* data arrays:
*
* IntersectionPoint: This is a boolean indicating whether or not the point is
* on the boundary of the two input objects
*
* BadTriangle: If the surface is cleaned and checked, this is a cell data array
* indicating whether or not the cell has edges with multiple neighbors
* A manifold surface will have 0 everywhere for this array!
*
* FreeEdge: If the surface is cleaned and checked, this is a cell data array
* indicating if the cell has any free edges. A watertight surface will have
* 0 everywhere for this array!
*
* Author: Adam Updegrove updega2@gmail.com
*/
#ifndef vtkIntersectionPolyDataFilter_h
#define vtkIntersectionPolyDataFilter_h
#include "vtkFiltersGeneralModule.h" // For export macro
#include "vtkPolyDataAlgorithm.h"
class VTKFILTERSGENERAL_EXPORT vtkIntersectionPolyDataFilter :
public vtkPolyDataAlgorithm
{
public:
static vtkIntersectionPolyDataFilter *New();
vtkTypeMacro(vtkIntersectionPolyDataFilter, vtkPolyDataAlgorithm);
void PrintSelf(ostream &os, vtkIndent indent) VTK_OVERRIDE;
//@{
/**
* Integer describing the number of intersection points and lines
*/
vtkGetMacro(NumberOfIntersectionPoints, int);
vtkGetMacro(NumberOfIntersectionLines, int);
//@}
//@{
/**
* If on, the second output will be the first input mesh split by the
* intersection with the second input mesh. Defaults to on.
*/
vtkGetMacro(SplitFirstOutput, int);
vtkSetMacro(SplitFirstOutput, int);
vtkBooleanMacro(SplitFirstOutput, int);
//@}
//@{
/**
* If on, the third output will be the second input mesh split by the
* intersection with the first input mesh. Defaults to on.
*/
vtkGetMacro(SplitSecondOutput, int);
vtkSetMacro(SplitSecondOutput, int);
vtkBooleanMacro(SplitSecondOutput, int);
//@}
//@{
/**
* If on, the output split surfaces will contain information about which
* points are on the intersection of the two inputs. Default: ON
*/
vtkGetMacro(ComputeIntersectionPointArray, int);
vtkSetMacro(ComputeIntersectionPointArray, int);
vtkBooleanMacro(ComputeIntersectionPointArray, int);
//@}
//@{
/**
* If on, the normals of the input will be checked. Default: OFF
*/
vtkGetMacro(CheckInput, int);
vtkSetMacro(CheckInput, int);
vtkBooleanMacro(CheckInput, int);
//@}
//@{
/**
* If on, the output remeshed surfaces will be checked for bad cells and
* free edges. Default: ON
*/
vtkGetMacro(CheckMesh, int);
vtkSetMacro(CheckMesh, int);
vtkBooleanMacro(CheckMesh, int);
//@}
//@{
/**
* Check the status of the filter after update. If the status is zero,
* there was an error in the operation. If status is one, everything
* went smoothly
*/
vtkGetMacro(Status, int);
//@}
//@{
/**
* The tolerance for geometric tests in the filter
*/
vtkGetMacro(Tolerance, double);
vtkSetMacro(Tolerance, double);
//@}
/**
* Given two triangles defined by points (p1, q1, r1) and (p2, q2,
* r2), returns whether the two triangles intersect. If they do,
* the endpoints of the line forming the intersection are returned
* in pt1 and pt2. The parameter coplanar is set to 1 if the
* triangles are coplanar and 0 otherwise. The surfaceid array
* is filled with the surface on which the first and second
* intersection points resides, respectively. A geometric tolerance
* can be specified in the last argument.
*/
static int TriangleTriangleIntersection(double p1[3], double q1[3],
double r1[3], double p2[3],
double q2[3], double r2[3],
int &coplanar, double pt1[3],
double pt2[3], double surfaceid[2],
double tolerance);
/**
* Function to clean and check the output surfaces for bad triangles and
* free edges
*/
static void CleanAndCheckSurface(vtkPolyData *pd, double stats[2],
double tolerance);
/**
* Function to clean and check the inputs
*/
static void CleanAndCheckInput(vtkPolyData *pd, double tolerance);
protected:
vtkIntersectionPolyDataFilter(); //Constructor
~vtkIntersectionPolyDataFilter() VTK_OVERRIDE; //Destructor
int RequestData(vtkInformation*, vtkInformationVector**,
vtkInformationVector*) VTK_OVERRIDE; //Update
int FillInputPortInformation(int, vtkInformation*) VTK_OVERRIDE; //Input,Output
private:
vtkIntersectionPolyDataFilter(const vtkIntersectionPolyDataFilter&) VTK_DELETE_FUNCTION;
void operator=(const vtkIntersectionPolyDataFilter&) VTK_DELETE_FUNCTION;
int NumberOfIntersectionPoints;
int NumberOfIntersectionLines;
int SplitFirstOutput;
int SplitSecondOutput;
int ComputeIntersectionPointArray;
int CheckMesh;
int CheckInput;
int Status;
double Tolerance;
class Impl; //Implementation class
};
#endif // vtkIntersectionPolyDataFilter_h
|