This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# pcbnew_easy.py | |
# Wrapper API for more convenient/pythonic creation of PCB boards and modules. | |
# Probably this should better be integrated in the default API instead of as | |
# a wrapper. However this was the quickest way to improve the usability for | |
# myself. | |
# | |
# All values are in mm, and coordinates and sizes can be given as iterables | |
# (tuples, lists, numpy arrays, ...) | |
# | |
# Copyright 2014 Piers Titus van der Torren <[email protected]> |