Pcbnew: solved minor bug in plot PS arcs were filled on silk screen layers

Libs update
This commit is contained in:
charras 2008-08-18 19:38:43 +00:00
parent 1e9a65f5ec
commit 608535f7cc
2 changed files with 3 additions and 3 deletions

View File

@ -8,7 +8,7 @@ email address.
2008-Aug-18 UPDATE Jean-Pierre Charras <jean-pierre.charras@inpg.fr>
================================================================================
+pcbnew:
bug solved: Horizontal Oblong pads holes have a bad T Code size.
bug solved: Horizontal Oblong pads holes have a bad T Code size in the drill file.
2008-Aug-15 UPDATE Jerry Jacobs <jerkejacobs@gmail.com>

View File

@ -543,8 +543,8 @@ void trace_1_pastille_OVALE_POST( wxPoint pos, wxSize size, int orient, int mode
rayon = 1;
if( rayon < w )
w = rayon;
PlotArcPS( wxPoint( pos.x + x1, pos.y + y1 ), -orient, -orient + 1800, rayon, w, 0);
PlotArcPS( wxPoint( pos.x + x0, pos.y + y0 ), -orient + 1800, -orient, rayon, w, 0 );
PlotArcPS( wxPoint( pos.x + x1, pos.y + y1 ), -orient, -orient + 1800, rayon, 0, w);
PlotArcPS( wxPoint( pos.x + x0, pos.y + y0 ), -orient + 1800, -orient, rayon, 0, w );
x0 = -rayon;
y0 = -delta / 2;