Pcbnew: solved minor bug in plot PS arcs were filled on silk screen layers
Libs update
This commit is contained in:
parent
1e9a65f5ec
commit
608535f7cc
|
@ -8,7 +8,7 @@ email address.
|
||||||
2008-Aug-18 UPDATE Jean-Pierre Charras <jean-pierre.charras@inpg.fr>
|
2008-Aug-18 UPDATE Jean-Pierre Charras <jean-pierre.charras@inpg.fr>
|
||||||
================================================================================
|
================================================================================
|
||||||
+pcbnew:
|
+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>
|
2008-Aug-15 UPDATE Jerry Jacobs <jerkejacobs@gmail.com>
|
||||||
|
|
|
@ -543,8 +543,8 @@ void trace_1_pastille_OVALE_POST( wxPoint pos, wxSize size, int orient, int mode
|
||||||
rayon = 1;
|
rayon = 1;
|
||||||
if( rayon < w )
|
if( rayon < w )
|
||||||
w = rayon;
|
w = rayon;
|
||||||
PlotArcPS( wxPoint( pos.x + x1, pos.y + y1 ), -orient, -orient + 1800, 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, w, 0 );
|
PlotArcPS( wxPoint( pos.x + x0, pos.y + y0 ), -orient + 1800, -orient, rayon, 0, w );
|
||||||
|
|
||||||
x0 = -rayon;
|
x0 = -rayon;
|
||||||
y0 = -delta / 2;
|
y0 = -delta / 2;
|
||||||
|
|
Loading…
Reference in New Issue