------------------------------------------------------------------------------ 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.
| 1158 | // cell's points to the cell. This operator does not reallocate memory; use the |
| 1159 | // operator ResizeCellList() to do this if necessary. |
| 1160 | void vtkPolyData::RemoveReferenceToCell(vtkIdType ptId, vtkIdType cellId) |
| 1161 | { |
| 1162 | static_cast<vtkCellLinks*>(this->Links.Get())->RemoveCellReference(cellId, ptId); |
| 1163 | } |
| 1164 | |
| 1165 | //------------------------------------------------------------------------------ |
| 1166 | // Add a reference to a cell in a particular point's link list. (You may also |
no test coverage detected