------------------------------------------------------------------------------
| 1427 | |
| 1428 | //------------------------------------------------------------------------------ |
| 1429 | void vtkCellArray::ReplaceCellAtId(vtkIdType cellId, vtkIdList* list) |
| 1430 | { |
| 1431 | this->Dispatch(ReplaceCellAtIdImpl{}, cellId, list->GetNumberOfIds(), list->GetPointer(0)); |
| 1432 | } |
| 1433 | |
| 1434 | //------------------------------------------------------------------------------ |
| 1435 | void vtkCellArray::ReplaceCellAtId( |