yaqwsx / KiKit

Automation tools for KiCAD
https://yaqwsx.github.io/KiKit
MIT License
1.54k stars 201 forks source link

Option to not have tabs or v-cuts on LR or TB #92

Closed serialx closed 3 years ago

serialx commented 3 years ago

I'm a software engineer myself. Sorry for not reporting a bug, this is rather a feature request. :)

I'm really impressed by KiKit's capabilities! Can't wait to try it out! Just one more thing. Can KiKit do a panelization like this video?

https://www.youtube.com/watch?v=iLxHpdRZJNA

It is very appealing because routed edges are very smooth and high quality. One would like to reduce v-cuts to improve the board edge quality. After seeing the CLI docs and examples, I don't think KiKit currently supports this kind of panelization.

Thank you for taking time in developling KiKit. It will be an invaluable software for open source hardware!

yaqwsx commented 3 years ago

Sure, it does support it...

Screenshot from 2020-11-10 14-17-54 Screenshot from 2020-11-10 14-17-41

kikit panelize grid -g 4 4 -s 2 --vtabs 1 --tabwidth 20 --htabs 0 --vcuts --railsTb 5 doc/resources/conn.kicad_pcb test.kicad_pcb

or

Screenshot from 2020-11-10 14-21-48 Screenshot from 2020-11-10 14-21-38

kikit panelize grid -g 4 4 -s 2 --vtabs 1 --htabs 0 --vcuts --railsTb 5 doc/resources/conn.kicad_pcb test.kicad_pcb
serialx commented 3 years ago

Thanks!