()
| 51 | pf = vtkProgrammableFilter() |
| 52 | pf.SetInputConnection(tris2.GetOutputPort()) |
| 53 | def remove_ghosts(): |
| 54 | input = pf.GetInput() |
| 55 | output = pf.GetOutputDataObject(0) |
| 56 | output.ShallowCopy(input) |
| 57 | output.RemoveGhostCells() |
| 58 | pf.SetExecuteMethod(remove_ghosts) |
| 59 | edges = vtkExtractEdges() |
| 60 | edges.SetInputConnection(pf.GetOutputPort()) |
nothing calls this directly
no test coverage detected