------------------------------------------------------------------------------
| 333 | |
| 334 | //------------------------------------------------------------------------------ |
| 335 | vtkSmartPointer<vtkStructuredCellArray> vtkStructuredData::GetCellArray( |
| 336 | int extent[6], bool usePixelVoxelOrientation) |
| 337 | { |
| 338 | auto implicitCellArray = vtkSmartPointer<vtkStructuredCellArray>::New(); |
| 339 | implicitCellArray->SetData(extent, usePixelVoxelOrientation); |
| 340 | return implicitCellArray; |
| 341 | } |
| 342 | |
| 343 | //------------------------------------------------------------------------------ |
| 344 | vtkSmartPointer<vtkConstantArray<unsigned char>> vtkStructuredData::GetCellTypes( |