board module#
Board definition#
This module provides the Board class for defining the physical board shape and signal area.
- class Board[source]#
Bases:
StructuralBoard shape and geometric constraints. Can be subclassed to create a template with appropriate shape(s) that may include added mounting holes and other geometric elements.
>>> class MyBoard(Board): ... # 50mm x 30mm board outline ... shape = rectangle(50.0, 30.0) ... signal_area = rectangle(46.0, 26.0)