Compare commits

...

2 Commits

Author SHA1 Message Date
jan
4d74eea253 [file.gdsii] attributes may have key=126 2025-10-12 23:34:39 -07:00
325a8b9590 [circle] fix mirror ignoring axis 2025-09-14 12:36:17 -07:00
2 changed files with 3 additions and 3 deletions

View File

@ -411,8 +411,8 @@ def _annotations_to_properties(annotations: annotations_t, max_len: int = 126) -
i = int(key) i = int(key)
except ValueError as err: except ValueError as err:
raise PatternError(f'Annotation key {key} is not convertable to an integer') from err raise PatternError(f'Annotation key {key} is not convertable to an integer') from err
if not (0 < i < 126): if not (0 < i <= 126):
raise PatternError(f'Annotation key {key} converts to {i} (must be in the range [1,125])') raise PatternError(f'Annotation key {key} converts to {i} (must be in the range [1,126])')
val_strings = ' '.join(str(val) for val in vals) val_strings = ' '.join(str(val) for val in vals)
b = val_strings.encode() b = val_strings.encode()

View File

@ -123,7 +123,7 @@ class Circle(Shape):
return self return self
def mirror(self, axis: int = 0) -> 'Circle': # noqa: ARG002 (axis unused) def mirror(self, axis: int = 0) -> 'Circle': # noqa: ARG002 (axis unused)
self.offset *= -1 self.offset[axis - 1] *= -1
return self return self
def scale_by(self, c: float) -> 'Circle': def scale_by(self, c: float) -> 'Circle':