| 330 | bool IsCellBoundary( |
| 331 | vtkIdType cellId, vtkIdType npts, const vtkIdType* ptIds, vtkIdType& neighborCellId); |
| 332 | bool IsCellBoundary(vtkIdType cellId, vtkIdType npts, const vtkIdType* ptIds) |
| 333 | { |
| 334 | vtkIdType neighborCellId; |
| 335 | return this->IsCellBoundary(cellId, npts, ptIds, neighborCellId); |
| 336 | } |
| 337 | ///@} |
| 338 | |
| 339 | ///@{ |
nothing calls this directly
no test coverage detected