----------------------------------------------------------------------------
| 1784 | |
| 1785 | //---------------------------------------------------------------------------- |
| 1786 | inline int vtkCellArray::GetNextCell(vtkIdList* pts) |
| 1787 | { |
| 1788 | if (this->TraversalCellId < this->GetNumberOfCells()) |
| 1789 | { |
| 1790 | this->GetCellAtId(this->TraversalCellId, pts); |
| 1791 | ++this->TraversalCellId; |
| 1792 | return 1; |
| 1793 | } |
| 1794 | |
| 1795 | pts->Reset(); |
| 1796 | return 0; |
| 1797 | } |
| 1798 | //---------------------------------------------------------------------------- |
| 1799 | inline vtkIdType vtkCellArray::GetCellSize(const vtkIdType cellId) const |
| 1800 | { |