------------------------------------------------------------------------------
| 101 | |
| 102 | //------------------------------------------------------------------------------ |
| 103 | vtkIdType vtkXMLPUnstructuredDataReader::GetNumberOfCellsInPiece(int piece) |
| 104 | { |
| 105 | if (this->PieceReaders[piece]) |
| 106 | { |
| 107 | return this->PieceReaders[piece]->GetNumberOfCells(); |
| 108 | } |
| 109 | else |
| 110 | { |
| 111 | return 0; |
| 112 | } |
| 113 | } |
| 114 | |
| 115 | //------------------------------------------------------------------------------ |
| 116 | void vtkXMLPUnstructuredDataReader::SetupEmptyOutput() |
no test coverage detected