------------------------------------------------------------------------------
| 41 | |
| 42 | //------------------------------------------------------------------------------ |
| 43 | void vtkXMLPUnstructuredDataWriter::WritePData(vtkIndent indent) |
| 44 | { |
| 45 | this->Superclass::WritePData(indent); |
| 46 | if (this->ErrorCode == vtkErrorCode::OutOfDiskSpaceError) |
| 47 | { |
| 48 | return; |
| 49 | } |
| 50 | vtkPointSet* input = this->GetPointSetInput(); |
| 51 | this->WritePPoints(input->GetPoints(), indent); |
| 52 | } |
| 53 | VTK_ABI_NAMESPACE_END |
nothing calls this directly
no test coverage detected