diff options
author | jaseg <git@jaseg.de> | 2022-02-02 10:58:20 +0100 |
---|---|---|
committer | jaseg <git@jaseg.de> | 2022-02-02 10:58:20 +0100 |
commit | 18b9da86601ad95aaf7f0d3e02617a1970aaf574 (patch) | |
tree | fc4dc7cb0c43f4722df805d998e7b58ac003884b /docs/object-api.rst | |
parent | 0fa713af4be2a5a229a773ca62b894347d6d0b8a (diff) | |
download | gerbonara-18b9da86601ad95aaf7f0d3e02617a1970aaf574.tar.gz gerbonara-18b9da86601ad95aaf7f0d3e02617a1970aaf574.tar.bz2 gerbonara-18b9da86601ad95aaf7f0d3e02617a1970aaf574.zip |
Fix doc typos
Diffstat (limited to 'docs/object-api.rst')
-rw-r--r-- | docs/object-api.rst | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/docs/object-api.rst b/docs/object-api.rst index f6345b9..796806c 100644 --- a/docs/object-api.rst +++ b/docs/object-api.rst @@ -1,14 +1,13 @@ Graphic Objects =============== -Graphic objects are the lego blocks a gerbonara :py:class:`gerbonara.rs274x.GerberFile` or -:py:class:`gerbonara.excellon.ExcellonFile` is built from. They are stored in the file's -:py:attr:`gerbonara.rs274x.GerberFile.objects` list. You can directly manipulate that list from code. - -There are four graphic object types: :py:class:`gerbonara.graphic_objects.Flash`, -:py:class:`gerbonara.graphic_objects.Line`, :py:class:`gerbonara.graphic_objects.Arc`, and -:py:class:`gerbonara.graphic_objects.Region` . All of them are derived from -:py:class:`gerbonara.graphic_objects.GraphicObject`. +Graphic objects are the lego blocks a gerbonara :py:class:`.GerberFile` or :py:class:`.ExcellonFile` is built from. They +are stored in the file's :py:attr:`~.GerberFile.objects` attribute of a :py:class:`.GerberFile`. You can directly +manipulate that list from code. + +There are four graphic object types: :py:class:`.Flash`, :py:class:`~.graphic_objects.Line`, +:py:class:`~.graphic_objects.Arc`, and :py:class:`~.graphic_objects.Region` . All of them are derived from +:py:class:`~.graphic_objects.GraphicObject`. .. autoclass:: gerbonara.graphic_objects.GraphicObject :members: |