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
|
// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
// SPDX-License-Identifier: BSD-3-Clause
#include "vtkCellData.h"
#include "vtkIdTypeArray.h"
#include "vtkIntArray.h"
#include "vtkPoints.h"
#include "vtkPolyData.h"
#include "vtkSmartPointer.h"
int TestPolyDataRemoveCell(int, char*[])
{
int rval = 0;
vtkIdType numPoints = 20;
vtkIdType numVerts = 5;
vtkIdType numLines = 8;
vtkIdType numTriangles = 3;
vtkIdType numStrips = 2;
vtkIdType numCells = numVerts + numLines + numTriangles + numStrips;
vtkIdType i;
vtkPoints* points = vtkPoints::New();
points->SetNumberOfPoints(numPoints);
for (i = 0; i < numPoints; i++)
{
double loc[3] = { static_cast<double>(i), static_cast<double>(i * i), 0.0 };
points->InsertPoint(i, loc);
}
vtkSmartPointer<vtkPolyData> poly = vtkSmartPointer<vtkPolyData>::New();
poly->AllocateExact(numCells, numCells);
poly->SetPoints(points);
points->Delete();
for (i = 0; i < numVerts; i++)
{
poly->InsertNextCell(VTK_VERTEX, 1, &i);
}
for (i = 0; i < numLines; i++)
{
vtkIdType pts[2] = { i, i + 1 };
poly->InsertNextCell(VTK_LINE, 2, pts);
}
for (i = 0; i < numTriangles; i++)
{
vtkIdType pts[3] = { 0, i + 1, i + 2 };
poly->InsertNextCell(VTK_TRIANGLE, 3, pts);
}
for (i = 0; i < numStrips; i++)
{
vtkIdType pts[3] = { 0, i + 1, i + 2 };
poly->InsertNextCell(VTK_TRIANGLE_STRIP, 3, pts);
}
vtkIntArray* cellTypes = vtkIntArray::New();
const char ctName[] = "cell types";
cellTypes->SetName(ctName);
cellTypes->SetNumberOfComponents(1);
cellTypes->SetNumberOfTuples(numCells);
for (i = 0; i < numCells; i++)
{
cellTypes->SetValue(i, poly->GetCellType(i));
}
poly->GetCellData()->AddArray(cellTypes);
cellTypes->Delete();
vtkIdTypeArray* cellPoints = vtkIdTypeArray::New();
const char cpName[] = "cell points";
cellPoints->SetName(cpName);
cellPoints->SetNumberOfComponents(4); // num points + point ids
cellPoints->SetNumberOfTuples(numCells);
for (i = 0; i < numCells; i++)
{
vtkIdType npts;
const vtkIdType* pts;
poly->GetCellPoints(i, npts, pts);
vtkIdType data[4] = { npts, pts[0], 0, 0 };
for (vtkIdType j = 1; j < npts; j++)
{
data[j + 1] = pts[j];
}
cellPoints->SetTypedTuple(i, data);
}
poly->GetCellData()->AddArray(cellPoints);
cellPoints->Delete();
poly->BuildCells();
// now that we're all set up, try deleting one of each object
poly->DeleteCell(numVerts - 1); // vertex
poly->DeleteCell(numVerts + numLines - 1); // line
poly->DeleteCell(numVerts + numLines + numTriangles - 1); // triangle
poly->DeleteCell(numCells - 1); // strip
poly->RemoveDeletedCells();
if (poly->GetNumberOfCells() != numCells - 4)
{
cout << "Wrong number of cells after removal.\n";
return 1;
}
// the arrays should have been changed so get them again...
cellTypes = vtkArrayDownCast<vtkIntArray>(poly->GetCellData()->GetArray(ctName));
cellPoints = vtkArrayDownCast<vtkIdTypeArray>(poly->GetCellData()->GetArray(cpName));
// check the cell types and arrays
for (i = 0; i < poly->GetNumberOfCells(); i++)
{
if (cellTypes->GetValue(i) != poly->GetCellType(i))
{
cout << "Problem with cell type for cell " << i << endl;
return 1;
}
}
// check the cell's points
for (i = 0; i < poly->GetNumberOfCells(); i++)
{
vtkIdType npts;
const vtkIdType* pts;
poly->GetCellPoints(i, npts, pts);
vtkIdType data[4];
cellPoints->GetTypedTuple(i, data);
if (data[0] != npts)
{
cout << "Problem with the number of points for cell " << i << endl;
return 1;
}
for (vtkIdType j = 0; j < npts; j++)
{
if (pts[j] != data[j + 1])
{
cout << "Problem with point " << j << " for cell " << i << endl;
return 1;
}
}
}
return rval;
}
|