jsreynaud / kicad-action-scripts

Some KiCad plugins in Python
GNU General Public License v3.0
250 stars 50 forks source link

Add support for concentric filling #49

Closed arjanmels closed 2 years ago

arjanmels commented 2 years ago

Added support for concentric filling: The vias will be aligned with the edges of the areas. There are option to entirely fill overlapping areas with vias, to only add an outer ring or to only add an outer ring to the outside (so not along holes).

In addition the delete vias function is implemented.

Full area fill ("Concentric"):

image

Along edges both outside and inside ("Outline"):

image

Along edge outside edge only ("Outline (No Holes)"):

image

And for reference the original modes:

Rectangular ("Rectangular"):

image

Random rectangular ("Rectangular", with random switch):

image

Star ("Star"):

image

Random star ("Star", with random switch):

image
jsreynaud commented 2 years ago

Thank you for your commits !