diff options
author | jaseg <git@jaseg.de> | 2023-02-25 17:31:16 +0100 |
---|---|---|
committer | jaseg <git@jaseg.de> | 2023-02-25 17:31:16 +0100 |
commit | 8b40d15dab376c92b37b0939515e7bdee7b83301 (patch) | |
tree | 1a9b1d513300cf17109d19d16e95fbb0e0a7e99f /gerbonara/apertures.py | |
parent | d43eff8b49022719b2933e8429a05e3a35b8762f (diff) | |
download | gerbonara-8b40d15dab376c92b37b0939515e7bdee7b83301.tar.gz gerbonara-8b40d15dab376c92b37b0939515e7bdee7b83301.tar.bz2 gerbonara-8b40d15dab376c92b37b0939515e7bdee7b83301.zip |
Moar doc
Diffstat (limited to 'gerbonara/apertures.py')
-rw-r--r-- | gerbonara/apertures.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gerbonara/apertures.py b/gerbonara/apertures.py index b4bf67b..d9137da 100644 --- a/gerbonara/apertures.py +++ b/gerbonara/apertures.py @@ -269,6 +269,8 @@ class CircleAperture(Aperture): @dataclass class RectangleAperture(Aperture): + """ Gerber rectangle aperture. Can only be used for flashes, since the line width of an interpolation of a rectangle + aperture is not well-defined and there is no tool that implements it in a geometrically correct way. """ _gerber_shape_code = 'R' _human_readable_shape = 'rect' #: float with the width of the rectangle in :py:attr:`unit` units. |