Commit 608535f7 authored by charras's avatar charras

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

Libs update
parent 1e9a65f5
...@@ -8,7 +8,7 @@ email address. ...@@ -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 ...@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment