From e78270ea71a68b25483cf10cc337a98ae673e691 Mon Sep 17 00:00:00 2001 From: Keith Packard Date: Fri, 29 Jan 2016 08:10:26 -0800 Subject: [PATCH] Reduce number of polys in ufqfpn28 corner pads These pads are supposed to have a diagonal edge, which pcb doesn't support. Instead, a sequence of overlapping rectangles is used to approximate the diagonal portion. The original version used 50 on each pad, which made the stencil cutter very unhappy. This version uses only 4. Signed-off-by: Keith Packard --- packages/ufqfpn28.5c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/ufqfpn28.5c b/packages/ufqfpn28.5c index aaf808e..0d59554 100644 --- a/packages/ufqfpn28.5c +++ b/packages/ufqfpn28.5c @@ -67,7 +67,7 @@ for (pad = 0; pad < num_pad; pad++) { int nstep = 0; if (pad == 0 || pad == num_pad-1) - nstep = 50; + nstep = 4; for (int s = 0; s <= nstep; s++) { if (nstep != 0) { -- 2.47.2