Helper function to in place update point numbering
| 235 | |
| 236 | // Helper function to in place update point numbering |
| 237 | void UpdatePointUses(vtkCellArray* ca, vtkIdType numConn, PointMap& ptMap) |
| 238 | { |
| 239 | ca->Dispatch(UpdateUses{}, numConn, ptMap); |
| 240 | } |
| 241 | |
| 242 | // Discard unused points; renumber output polylines and polygons. |
| 243 | // Performs this operation in place. |
no test coverage detected