summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorjaseg <git@jaseg.de>2022-02-02 10:53:19 +0100
committerjaseg <git@jaseg.de>2022-02-02 10:53:19 +0100
commit0fa713af4be2a5a229a773ca62b894347d6d0b8a (patch)
treeb91d6f2892fe58b892196db377a6eb092984a735 /docs
parent7473e471dc69d09a35bb0762549cc4f3ab8b04b3 (diff)
downloadgerbonara-0fa713af4be2a5a229a773ca62b894347d6d0b8a.tar.gz
gerbonara-0fa713af4be2a5a229a773ca62b894347d6d0b8a.tar.bz2
gerbonara-0fa713af4be2a5a229a773ca62b894347d6d0b8a.zip
More doc
Diffstat (limited to 'docs')
-rw-r--r--docs/apertures.rst157
-rw-r--r--docs/file-api.rst5
-rw-r--r--docs/utilities.rst5
3 files changed, 43 insertions, 124 deletions
diff --git a/docs/apertures.rst b/docs/apertures.rst
index 2a17a04..51d4b0f 100644
--- a/docs/apertures.rst
+++ b/docs/apertures.rst
@@ -1,124 +1,17 @@
Apertures in Gerbonara
======================
-Gerbonara maps all standard Gerber apertures to subclasses of the Aperture_ class. These subclasses: CircleAperture_,
-RectangleAperture_, ObroundAperture_ and PolygonAperture_. Aperture macro instantiations get mapped to
-ApertureMacroInstance_ (also an Aperture_ subclass).
-
-All Aperture_ subclasses have these common attributes:
-
-
-`hole_dia`
- float with diameter of hole. 0 for no hole.
-
-`hole_rect_h`
- float or None. If not None, specifies a rectangular hole of size `hole_dia * hole_rect_h` instead of a round hole.
-
-`unit`
- LengthUnit_ for all of this aperture's fields
-
-`attrs`
- GerberX2 attributes of this aperture. Note that this will only contain aperture attributes, not file attributes.
- File attributes are stored in the `attrs` of GerberFile_.
-
-`original_number`
- int of aperture index this aperture had when it was read from the Gerber file. This field is purely informational
- since apertures are de-duplicated and re-numbered when writing a Gerber file. For `D10`, this field would be `10`.
- If you programmatically create a new aperture, you do not have to set this.
-
-`rotation`
- Aperture rotation in radians counter-clockwise. This field is not part of the Gerber standard. Standard rectangle
- and obround apertures do not support rotation. Gerbonara converts rotated apertures into aperture macros during
- Gerber export as necessary.
-
-CircleAperture
---------------
-
-This is the only one valid for use in Line_ or Arc_.
-
-Attributes:
-
-Common attributes:
- `hole_dia`, `hole_rect_h`, `unit`, `attrs`, and `original_number`. `rotation` is present but has no effect in
- CircleAperture_.
-
-`diameter`
- float with diameter of aperture in the unit from the aperture's `unit` field.
-
-RectangleAperture
------------------
-
-Common attributes:
- `hole_dia`, `hole_rect_h`, `unit`, `attrs`, `original_number`, and `rotation`
-
-`w`, `h`
- floats with width or height of rectangle in units from the aperture's `unit` field.
-
-ObroundAperture
----------------
-
-Aperture whose shape is the convex hull of two circles of equal radii.
-
-Common attributes:
- `hole_dia`, `hole_rect_h`, `unit`, `attrs`, `original_number`, and `rotation`
-
-`w`, `h`
- floats with width and height of bounding box of obround. The smaller one of these will be the diameter of the
- obround's ends. If `w` is larger, the result will be a landscape obround. If `h` is larger, it will be a portrait
- obround.
-
-PolygonAperture
----------------
-
-Aperture whose shape is a regular n-sided polygon (e.g. pentagon, hexagon etc.).
-
-
-Common attributes:
- `hole_dia`, `unit`, `attrs`, `original_number`, and `rotation`. `hole_rect_h` is not supported in PolygonAperture_
- since the Gerber spec does not list it.
-
-`diameter`
- float with diameter of circumscribing circle, i.e. the circle that all the polygon's corners lie on.
-
-`n_vertices`
- int with number of corners of this polygon. Three for a triangle, four for a square, five for a pentagon etc.
-
-ApertureMacroInstance
----------------------
-
-One instance of an aperture macro. An aperture macro defined with an `AM` statement can be instantiated by multiple `AD`
-aperture definition statements using different parameters. An ApertureMacroInstance_ is one such binding of a macro to a
-particular set of parameters. Note that you still need an ApertureMacroInstance_ even if your ApertureMacro_ has no
-parameters since an ApertureMacro_ is not an Aperture_ by itself.
-
-Attributes:
-
-Common attributes:
- `unit`, `attrs`, `original_number`, and `rotation`. ApertureMacroInstance_ does not support `hole_dia` or
- `hole_rect_h`. `rotation` is handled by re-writing the ApertureMacro_ during export.
-
-`macro`
- The ApertureMacro_ that is bound here
-
-`parameters`
- list of ints or floats with the parameters for this macro. The first element is `$1`, the second is `$2` etc.
-
-ExcellonTool
-------------
-
-Special Aperture_ subclass for use in ExcellonFile_. Similar to CircleAperture_, but does not have `hole_dia` or
-`hole_rect_h`, and has additional `plated` and `depth_offset` attributes.
-
-
-Common attributes:
- `unit`, `original_number`
-
-`plated`
- bool or None. True if this hole/slot is copper-plated, False if not, and None if it is undefined or unknown.
-
-`depth_offset`
- float with Excellon depth offset for this hole or slot. If the fab supports this, this can be used to create
- features that do not go all the way through the board.
+Gerbonara maps all standard Gerber apertures to subclasses of the :py:class:`.Aperture` class. These subclasses:
+:py:class:`.CircleAperture`, :py:class:`.RectangleAperture`, :py:class:`.ObroundAperture` and
+:py:class:`.PolygonAperture`. :doc:`Aperture macro<aperture-macros>` instantiations get mapped to
+:py:class:`.ApertureMacroInstance` (also an :py:class:`Aperture` subclass). The basic aperture shapes each support a
+central hole through their :py:class:`~.CircleAperture.hole_dia` attribute. This "hole" is just a cut-out in the
+aperture itself, and does not imply an actual drilled hole in the board. Drilled holes in the board are specified
+completely separately through an :py:class:`.ExcellonFile`.
+
+Gerbonara is able to rotate any aperture. The Gerber standard does not support rotation for standard apertures in any
+widespread way, so Gerbolyze handles rotation by converting rotated standard apertures into aperture macros during
+export as necessary.
Aperture generalization
-----------------------
@@ -132,7 +25,29 @@ For polygons, we simply change the angle parameter. However, for rectangles and
supports a rotation parameter. The only way to rotate these is to convert them to an aperture macro, then rotate that.
This behavior of using aperture macros for general rotated rectangles is common behavior among CAD tools. Gerbonara adds
-a non-standard `rotation` attribute to all apertures except CircleAperture_ and transparently converts rotated instances
-to the appropriate ApertureMacroInstance_ objects while it writes out the file. Be aware that this may mean that an
-object that in memory has a RectangleAperture_ might end up with an aperture macro instance in the output Gerber file.
+a non-standard :py:attr:`.RectangleAperture.rotation` attribute to all apertures except :py:class:`.CircleAperture` and
+transparently converts rotated instances to the appropriate :py:class:`.ApertureMacroInstance` objects while it writes
+out the file. Be aware that this may mean that an object that in memory has a :py:class:`.RectangleAperture` might end
+up with an aperture macro instance in the output Gerber file.
+
+Aperture classes
+----------------
+
+.. autoclass:: gerbonara.apertures.Aperture
+ :members:
+
+.. autoclass:: gerbonara.apertures.CircleAperture
+ :members:
+
+.. autoclass:: gerbonara.apertures.RectangleAperture
+ :members:
+
+.. autoclass:: gerbonara.apertures.ObroundAperture
+ :members:
+
+.. autoclass:: gerbonara.apertures.PolygonAperture
+ :members:
+
+.. autoclass:: gerbonara.apertures.ApertureMacroInstance
+ :members:
diff --git a/docs/file-api.rst b/docs/file-api.rst
index d73b5f1..ed23672 100644
--- a/docs/file-api.rst
+++ b/docs/file-api.rst
@@ -7,9 +7,8 @@ Gerbonara currently supports three file types: RS-274-X Gerber as `specified by
Usually, a PCB is sent to a manufacturer as a bundle of several of these files. Such a bundle of files (each of which is
either a :py:class:`.GerberFile` or an :py:class:`.ExcellonFile`) is represented by :py:class:`.LayerStack`.
-:py:class:`.LayerStack` contains logic to automatcally
-recognize a wide variety of CAD tools from file name and syntactic hints, and can automatically match all files in a
-folder to their appropriate layers.
+:py:class:`.LayerStack` contains logic to automatcally recognize a wide variety of CAD tools from file name and
+syntactic hints, and can automatically match all files in a folder to their appropriate layers.
.. autoclass:: gerbonara.layers.LayerStack
:members:
diff --git a/docs/utilities.rst b/docs/utilities.rst
index 89b1cde..80ce5ec 100644
--- a/docs/utilities.rst
+++ b/docs/utilities.rst
@@ -1,3 +1,8 @@
Utilities
=========
+.. autoclass:: gerbonara.utils.LengthUnit
+ :members:
+
+.. autoclass:: gerbonara.cam.FileSettings
+ :members: