| 1769 | |
| 1770 | //---------------------------------------------------------------------------- |
| 1771 | inline int vtkCellArray::GetNextCell(vtkIdType& npts, vtkIdType const*& pts) VTK_SIZEHINT(pts, npts) |
| 1772 | { |
| 1773 | if (this->TraversalCellId < this->GetNumberOfCells()) |
| 1774 | { |
| 1775 | this->GetCellAtId(this->TraversalCellId, npts, pts); |
| 1776 | ++this->TraversalCellId; |
| 1777 | return 1; |
| 1778 | } |
| 1779 | |
| 1780 | npts = 0; |
| 1781 | pts = nullptr; |
| 1782 | return 0; |
| 1783 | } |
| 1784 | |
| 1785 | //---------------------------------------------------------------------------- |
| 1786 | inline int vtkCellArray::GetNextCell(vtkIdList* pts) |
no test coverage detected