------------------------------------------------------------------------------
| 694 | |
| 695 | //------------------------------------------------------------------------------ |
| 696 | void vtkCellArray::ReplaceCell(vtkIdType loc, int npts, const vtkIdType pts[]) |
| 697 | { |
| 698 | vtkIdType cellId; |
| 699 | this->Dispatch(deprec::LocationToCellIdFunctor{}, loc, cellId); |
| 700 | if (cellId < 0) |
| 701 | { |
| 702 | vtkErrorMacro("Invalid location, ignoring."); |
| 703 | return; |
| 704 | } |
| 705 | |
| 706 | this->ReplaceCellAtId(cellId, static_cast<vtkIdType>(npts), pts); |
| 707 | } |
| 708 | |
| 709 | //------------------------------------------------------------------------------ |
| 710 | vtkIdTypeArray* vtkCellArray::GetData() |
nothing calls this directly
no test coverage detected