------------------------------------------------------------------------------
| 174 | |
| 175 | //------------------------------------------------------------------------------ |
| 176 | void vtkXMLPUnstructuredGridReader::CopyArrayForCells( |
| 177 | vtkAbstractArray* inArray, vtkAbstractArray* outArray) |
| 178 | { |
| 179 | if (!this->PieceReaders[this->Piece]) |
| 180 | { |
| 181 | return; |
| 182 | } |
| 183 | if (!inArray || !outArray) |
| 184 | { |
| 185 | return; |
| 186 | } |
| 187 | |
| 188 | vtkIdType numCells = this->PieceReaders[this->Piece]->GetNumberOfCells(); |
| 189 | outArray->InsertTuples(this->StartCell, numCells, 0, inArray); |
| 190 | } |
| 191 | |
| 192 | //------------------------------------------------------------------------------ |
| 193 | vtkXMLDataReader* vtkXMLPUnstructuredGridReader::CreatePieceReader() |
nothing calls this directly
no test coverage detected