| 221 | |
| 222 | template <bool FixedSize> |
| 223 | void FillCellArray(vtkCellArray* cellArray, bool reverse = false) |
| 224 | { |
| 225 | cellArray->InsertNextCell(GetCellIds<FixedSize>(0, reverse)); |
| 226 | cellArray->InsertNextCell(GetCellIds<FixedSize>(1, reverse)); |
| 227 | cellArray->InsertNextCell(GetCellIds<FixedSize>(2, reverse)); |
| 228 | } |
| 229 | |
| 230 | template <bool FixedSize> |
| 231 | bool ValidateCell(vtkIdType cellId, vtkIdType npts, const vtkIdType* pts, bool reverse = false, |
nothing calls this directly
no test coverage detected