------------------------------------------------------------------------------ Resize the list of cells using a particular point. (This operator assumes that BuildLinks() has been called.) Note that dataset should be set to "Editable".
| 1251 | // that BuildLinks() has been called.) Note that dataset should be set to |
| 1252 | // "Editable". |
| 1253 | void vtkUnstructuredGrid::ResizeCellList(vtkIdType ptId, int size) |
| 1254 | { |
| 1255 | static_cast<vtkCellLinks*>(this->Links.Get())->ResizeCellList(ptId, size); |
| 1256 | } |
| 1257 | |
| 1258 | //------------------------------------------------------------------------------ |
| 1259 | // Replace the points defining cell "cellId" with a new set of points. This |
no test coverage detected