-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvtkCleanUnstructuredGridCells.cxx
150 lines (127 loc) · 4.46 KB
/
vtkCleanUnstructuredGridCells.cxx
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
#include "include/vtkCleanUnstructuredGridCells.h"
#include "vtkCell.h"
#include "vtkCellData.h"
#include "vtkCollection.h"
#include "vtkInformation.h"
#include "vtkInformationVector.h"
#include "vtkIntArray.h"
#include "vtkObjectFactory.h"
#include "vtkPointData.h"
#include "vtkPoints.h"
#include "vtkUnstructuredGrid.h"
#include <set>
vtkStandardNewMacro(vtkCleanUnstructuredGridCells);
//----------------------------------------------------------------------------
vtkCleanUnstructuredGridCells::vtkCleanUnstructuredGridCells()
{
}
//----------------------------------------------------------------------------
vtkCleanUnstructuredGridCells::~vtkCleanUnstructuredGridCells()
{
}
//----------------------------------------------------------------------------
void vtkCleanUnstructuredGridCells::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os, indent);
}
//----------------------------------------------------------------------------
int vtkCleanUnstructuredGridCells::RequestData(vtkInformation* vtkNotUsed(request),
vtkInformationVector** inputVector, vtkInformationVector* outputVector)
{
vtkInformation* inInfo = inputVector[0]->GetInformationObject(0);
vtkInformation* outInfo = outputVector->GetInformationObject(0);
vtkUnstructuredGrid* input =
vtkUnstructuredGrid::SafeDownCast(inInfo->Get(vtkDataObject::DATA_OBJECT()));
vtkUnstructuredGrid* output =
vtkUnstructuredGrid::SafeDownCast(outInfo->Get(vtkDataObject::DATA_OBJECT()));
if (input->GetNumberOfCells() == 0)
{
// set up a ugrid with same data arrays as input, but
// no points, cells or data.
output->Allocate(1);
output->GetPointData()->CopyAllocate(input->GetPointData(), VTK_CELL_SIZE);
vtkPoints* pts = vtkPoints::New();
pts->SetDataTypeToDouble();
output->SetPoints(pts);
pts->Delete();
return 1;
}
// Copy over the original points. Assume there are no degenerate points.
output->SetPoints(input->GetPoints());
// remove duplicate cells
std::set<std::set<int> > cellSet;
std::set<std::set<int> >::iterator cellIter;
// Now copy the cells.
vtkIdList* cellPoints = vtkIdList::New();
const int numberOfCells = input->GetNumberOfCells();
vtkIdType progressStep = numberOfCells / 100;
if (progressStep == 0)
{
progressStep = 1;
}
output->Allocate(numberOfCells);
int ndeg = 0;
int ndup = 0;
for (int id = 0; id < numberOfCells; id++)
{
if (id % progressStep == 0)
{
this->UpdateProgress(0.8 + 0.2 * (static_cast<float>(id) / numberOfCells));
}
// duplicate points do not make poly verticies or triangle
// strips degenerate so don't remove them
int cellType = input->GetCellType(id);
if (cellType == VTK_POLY_VERTEX || cellType == VTK_TRIANGLE_STRIP)
{
input->GetCellPoints(id, cellPoints);
output->InsertNextCell(cellType, cellPoints);
continue;
}
input->GetCellPoints(id, cellPoints);
std::set<int> nn;
for (int i = 0; i < cellPoints->GetNumberOfIds(); i++)
{
int cellPtId = cellPoints->GetId(i);
nn.insert(cellPtId);
}
// this conditional may generate non-referenced nodes
cellIter = cellSet.find(nn);
// only copy a cell to the output if it is neither degenerate nor duplicate
if (nn.size() == static_cast<unsigned int>(cellPoints->GetNumberOfIds()) &&
cellIter == cellSet.end())
{
output->InsertNextCell(input->GetCellType(id), cellPoints);
cellSet.insert(nn);
}
else if (nn.size() != static_cast<unsigned int>(cellPoints->GetNumberOfIds()))
{
ndeg++; // a node appeared more than once in a cell
}
else if (cellIter != cellSet.end())
{
ndup++; // cell has duplicate(s)
}
}
if (ndeg)
{
vtkDebugMacro(<< "vtkCleanUnstructuredGridCells : WARNING, " << ndeg
<< " degenerated cells (i.e. cells with coincident nodes) have been"
<< " removed, which may result in disconnected nodes. It is"
<< " recommended to clean the grid." << endl);
}
if (ndup)
{
vtkDebugMacro(<< "vtkCleanUnstructuredGridCells : " << ndup
<< " duplicate cells (multiple instances of a cell) have been"
<< " removed." << endl);
cellPoints->Delete();
output->Squeeze();
}
return 1;
}
int vtkCleanUnstructuredGridCells::FillInputPortInformation(
int vtkNotUsed(port), vtkInformation* info)
{
info->Set(vtkAlgorithm::INPUT_REQUIRED_DATA_TYPE(), "vtkUnstructuredGrid");
return 1;
}