----------------------------------------------------------------------------
| 1824 | |
| 1825 | //---------------------------------------------------------------------------- |
| 1826 | inline vtkIdType vtkCellArray::GetCellPointAtId(vtkIdType cellId, vtkIdType cellPointIndex) const |
| 1827 | { |
| 1828 | vtkIdType pointId; |
| 1829 | this->Dispatch(vtkCellArray_detail::CellPointAtIdImpl{}, cellId, cellPointIndex, pointId); |
| 1830 | return pointId; |
| 1831 | } |
| 1832 | |
| 1833 | //---------------------------------------------------------------------------- |
| 1834 | inline vtkIdType vtkCellArray::InsertNextCell(vtkIdType npts, const vtkIdType* pts) |
no test coverage detected