From 6de138bf7c0c261e123997dcd014350bc5e2f9a3 Mon Sep 17 00:00:00 2001 From: jaseg Date: Sun, 7 Jul 2024 15:16:01 +0200 Subject: protoboard: reduce hole keepout margins --- gerbonara/cad/protoboard.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gerbonara/cad/protoboard.py b/gerbonara/cad/protoboard.py index fa81952..004694f 100644 --- a/gerbonara/cad/protoboard.py +++ b/gerbonara/cad/protoboard.py @@ -27,7 +27,7 @@ class ProtoBoard(Board): if mounting_hole_dia: mounting_hole_offset = mounting_hole_offset or mounting_hole_dia*2 - ko = mounting_hole_offset*2 + ko = mounting_hole_offset + mounting_hole_dia*(0.5 + 0.25) stack = MechanicalHoleStack(mounting_hole_dia, unit=unit) self.add(Pad(mounting_hole_offset, mounting_hole_offset, pad_stack=stack, unit=unit)) -- cgit