diff options
author | jaseg <git@jaseg.de> | 2023-04-30 12:59:29 +0200 |
---|---|---|
committer | jaseg <git@jaseg.de> | 2023-05-07 12:59:10 +0200 |
commit | 4bac77d0b444137befaf70f93c3cc4d402c4275e (patch) | |
tree | 1f6ee1f636650e7222e7a1e0aa9e70f887b9ccf5 /gerbonara/cad/primitives.py | |
parent | b1e189eed23e85c089de0e8507fc3ea81cc79324 (diff) | |
download | gerbonara-4bac77d0b444137befaf70f93c3cc4d402c4275e.tar.gz gerbonara-4bac77d0b444137befaf70f93c3cc4d402c4275e.tar.bz2 gerbonara-4bac77d0b444137befaf70f93c3cc4d402c4275e.zip |
Add pad ring generator
Diffstat (limited to 'gerbonara/cad/primitives.py')
-rw-r--r-- | gerbonara/cad/primitives.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gerbonara/cad/primitives.py b/gerbonara/cad/primitives.py index 9a9a373..ff2518c 100644 --- a/gerbonara/cad/primitives.py +++ b/gerbonara/cad/primitives.py @@ -480,8 +480,9 @@ class Trace: end: object = None waypoints: [(float, float)] = field(default_factory=list) style: str = 'oblique' - orientation: [str] = tuple() # 'top' or 'bottom' + orientation: [str] = tuple() # 'cw' or 'ccw' roundover: float = 0 + side: str = 'top' unit: LengthUnit = MM parent: object = None |