Browse Source

Pcbnew: fix bad arcs in plot postscript (from Simon Schubert)

pull/1/head
Simon Schubert 14 years ago
committed by jean-pierre charras
parent
commit
bcd66579d9
  1. 3
      common/common_plotPS_functions.cpp

3
common/common_plotPS_functions.cpp

@ -153,6 +153,9 @@ void PS_PLOTTER::arc( wxPoint centre, int StAngle, int EndAngle, int radius,
if( radius <= 0 )
return;
if( StAngle > EndAngle )
EXCHG( StAngle, EndAngle );
set_current_line_width( width );
// Calculate start point.

Loading…
Cancel
Save