------------------------------------------------------------------------------
| 867 | |
| 868 | //------------------------------------------------------------------------------ |
| 869 | inline void vtkPolyData::ReplaceCellPoint(vtkIdType cellId, vtkIdType oldPtId, vtkIdType newPtId) |
| 870 | { |
| 871 | vtkNew<vtkIdList> ids; |
| 872 | this->ReplaceCellPoint(cellId, oldPtId, newPtId, ids); |
| 873 | } |
| 874 | |
| 875 | //------------------------------------------------------------------------------ |
| 876 | inline void vtkPolyData::ReplaceCellPoint( |
no test coverage detected