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 <keithp@keithp.com>
int nstep = 0;
if (pad == 0 || pad == num_pad-1)
- nstep = 50;
+ nstep = 4;
for (int s = 0; s <= nstep; s++) {
if (nstep != 0) {