MCPcopy Create free account
hub / github.com/Kitware/VTK / ReplaceCurrentCell

Function ReplaceCurrentCell

Common/DataModel/vtkCellArrayIterator.h:203–207  ·  view source on GitHub ↗

* 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). */

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 2

ReplaceCellAtIdMethod · 0.80
assertFunction · 0.50

Tested by

no test coverage detected