------------------------------------------------------------------------------
| 46 | |
| 47 | //------------------------------------------------------------------------------ |
| 48 | void vtkXMLPStructuredDataWriter::WritePPieceAttributes(int index) |
| 49 | { |
| 50 | if (this->Extents.find(index) != this->Extents.end()) |
| 51 | { |
| 52 | this->WriteVectorAttribute("Extent", 6, this->Extents[index].data()); |
| 53 | if (this->ErrorCode == vtkErrorCode::OutOfDiskSpaceError) |
| 54 | { |
| 55 | return; |
| 56 | } |
| 57 | } |
| 58 | this->Superclass::WritePPieceAttributes(index); |
| 59 | } |
| 60 | |
| 61 | //------------------------------------------------------------------------------ |
| 62 | vtkXMLWriter* vtkXMLPStructuredDataWriter::CreatePieceWriter(int index) |
nothing calls this directly
no test coverage detected