------------------------------------------------------------------------------
| 830 | |
| 831 | //------------------------------------------------------------------------------ |
| 832 | inline void vtkPolyData::AddCellReference(vtkIdType cellId) |
| 833 | { |
| 834 | const vtkIdType* pts; |
| 835 | vtkIdType npts; |
| 836 | |
| 837 | this->GetCellPoints(cellId, npts, pts); |
| 838 | auto links = static_cast<vtkCellLinks*>(this->Links.Get()); |
| 839 | for (vtkIdType i = 0; i < npts; i++) |
| 840 | { |
| 841 | links->AddCellReference(cellId, pts[i]); |
| 842 | } |
| 843 | } |
| 844 | |
| 845 | //------------------------------------------------------------------------------ |
| 846 | inline void vtkPolyData::ResizeCellList(vtkIdType ptId, int size) |
no test coverage detected