diff options
author | Hamilton Kibbe <hamilton.kibbe@gmail.com> | 2015-06-11 11:20:56 -0400 |
---|---|---|
committer | Hamilton Kibbe <hamilton.kibbe@gmail.com> | 2015-06-11 11:20:56 -0400 |
commit | 94f3976915d64a77135a1fdc8983085ee8d2e1f9 (patch) | |
tree | 353b06b7b26e5bcb6da6a08a39de24d800d73d09 /gerber/primitives.py | |
parent | 1a70064e1097b90215e9f58b36cb31520d650eee (diff) | |
download | gerbonara-94f3976915d64a77135a1fdc8983085ee8d2e1f9.tar.gz gerbonara-94f3976915d64a77135a1fdc8983085ee8d2e1f9.tar.bz2 gerbonara-94f3976915d64a77135a1fdc8983085ee8d2e1f9.zip |
Add keys to statements for linking to primitives. Add some API features to ExcellonFile, such as getting a tool path length and changing tool parameters. Excellonfiles write method generates statements based on the drill hits in the hits member, so drill hits in a generated file can be re-ordered by re-ordering the drill hits in ExcellonFile.hits. see #30
Diffstat (limited to 'gerber/primitives.py')
-rw-r--r-- | gerber/primitives.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gerber/primitives.py b/gerber/primitives.py index bdd49f7..00ecb12 100644 --- a/gerber/primitives.py +++ b/gerber/primitives.py @@ -36,11 +36,13 @@ class Primitive(object): Rotation of a primitive about its origin in degrees. Positive rotation
is counter-clockwise as viewed from the board top.
"""
- def __init__(self, level_polarity='dark', rotation=0, units=None):
+ def __init__(self, level_polarity='dark', rotation=0, units=None, id=None, statement_id=None):
self.level_polarity = level_polarity
self.rotation = rotation
self.units = units
self._to_convert = list()
+ self.id = id
+ self.statement_id = statement_id
def bounding_box(self):
""" Calculate bounding box
|