| 879 | |
| 880 | |
| 881 | bool PS_PLOTTER::EndPlot() |
| 882 | { |
| 883 | wxASSERT( m_outputFile ); |
| 884 | fmt::print( m_outputFile, |
| 885 | "showpage\n" |
| 886 | "grestore\n" |
| 887 | "%%EOF\n" ); |
| 888 | fclose( m_outputFile ); |
| 889 | m_outputFile = nullptr; |
| 890 | |
| 891 | return true; |
| 892 | } |
| 893 | |
| 894 | |
| 895 | void PS_PLOTTER::Text( const VECTOR2I& aPos, |
no outgoing calls