------------------------------------------------------------------------------ Remove a reference to a cell in a particular point's link list. You may also consider using RemoveCellReference() to remove the references from all the cell's points to the cell. This operator does not reallocate memory; use the operator ResizeCellList() to do this if necessary. Note that dataset should be set to "Edita
| 1231 | // memory; use the operator ResizeCellList() to do this if necessary. Note that |
| 1232 | // dataset should be set to "Editable". |
| 1233 | void vtkUnstructuredGrid::RemoveReferenceToCell(vtkIdType ptId, vtkIdType cellId) |
| 1234 | { |
| 1235 | static_cast<vtkCellLinks*>(this->Links.Get())->RemoveCellReference(cellId, ptId); |
| 1236 | } |
| 1237 | |
| 1238 | //------------------------------------------------------------------------------ |
| 1239 | // Add a reference to a cell in a particular point's link list. (You may also |
nothing calls this directly
no test coverage detected