------------------------------------------------------------------------------
| 1174 | |
| 1175 | //------------------------------------------------------------------------------ |
| 1176 | void vtkPolyData::ReplaceCell(vtkIdType cellId, vtkIdList* ids) |
| 1177 | { |
| 1178 | this->ReplaceCell(cellId, static_cast<int>(ids->GetNumberOfIds()), ids->GetPointer(0)); |
| 1179 | } |
| 1180 | |
| 1181 | //------------------------------------------------------------------------------ |
| 1182 | // Replace the points defining cell "cellId" with a new set of points. This |
no test coverage detected