Extra V-CUT Lines #391
Unanswered
alitekin2fx
asked this question in
Q&A
Replies: 2 comments
-
I tricked KiKit with the following change, but need to have a consistent solution. --- a/kikit/panelize_ui.py |
Beta Was this translation helpful? Give feedback.
0 replies
-
Needed something similar and had other solution, postprocess script: "post": {
"script": "postprocess.py",
} from kikit.units import mm
from pcbnew import wxPoint
def kikitPostprocess(panel, arg):
#
# E.g. leave only each third horisontal V-cut
hc2 = panel.hVCuts.copy()
hc2.sort()
panel.hVCuts = hc2[::3]
#
# Or remove all of the horisontal V-cuts
panel.hVCuts = [] |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, I have created above panel by below parameters but there are extra horizontal V-CUT lines. Can someone please tell me how to get rid of these V-CUT lines?
{
"layout": {
"hspace": "2mm",
"vspace": "2mm",
"vbackbone": "2mm",
"rows": "8",
"cols": "2"
},
"source": {
"tolerance": "15mm"
},
"tabs": {
"type": "fixed",
"vwidth": "5.8mm",
"hwidth": "5.8mm",
"vcount": "0"
},
"cuts": {
"type": "vcuts"
},
"framing": {
"type": "frame",
"cuts": "v"
},
"tooling": {
"type": "3hole",
"hoffset": "2.5mm",
"voffset": "2.5mm",
"size": "1.5mm"
},
"fiducials": {
"type": "3fid",
"hoffset": "5mm",
"voffset": "2.5mm",
"coppersize": "2mm"
},
"post": {
"millradius": "1mm"
}
}
Beta Was this translation helpful? Give feedback.
All reactions