Skip to content
Snippets Groups Projects
Commit 8b91c6e2 authored by T.J. Corona's avatar T.J. Corona
Browse files

vtkPolydata without holes now pass their polygons through vtkFillHolesFilter.

This fix is in reference to bug report 0015081.
parent 6f0c543f
Branches
Tags
No related merge requests found
......@@ -247,6 +247,10 @@ int vtkFillHolesFilter::RequestData(
output->SetPolys(newCells);
newCells->Delete();
}
else
{
output->SetPolys(inPolys);
}
output->SetStrips(input->GetStrips());
Mesh->Delete();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment