| 1633 | { |
| 1634 | template <class OffsetsT, class ConnectivityT> |
| 1635 | void operator()( |
| 1636 | OffsetsT* offsets, ConnectivityT* vtkNotUsed(conn), vtkIdType cellId, vtkIdType& cellSize) |
| 1637 | { |
| 1638 | cellSize = GetCellSize(offsets, cellId); |
| 1639 | } |
| 1640 | }; |
| 1641 | |
| 1642 | struct GetCellAtIdImpl : public vtkCellArray::DispatchUtilities |
nothing calls this directly
no test coverage detected