* Replace the current cell with the ids in `list`. Note that this method * CANNOT change the number of points in the cell, it can only redefine the * ids (e.g. `list` must contain the same number of entries as the current * cell's points). */
| 201 | * cell's points). |
| 202 | */ |
| 203 | void ReplaceCurrentCell(vtkIdList* list) |
| 204 | { |
| 205 | assert(this->CurrentCellId < this->NumberOfCells); |
| 206 | this->CellArray->ReplaceCellAtId(this->CurrentCellId, list); |
| 207 | } |
| 208 | |
| 209 | /** |
| 210 | * Replace the current cell with the ids in `pts`. Note that this method |
nothing calls this directly
no test coverage detected