doc update
This commit is contained in:
parent
bf9f9451f5
commit
f2f411493e
7 changed files with 31 additions and 12 deletions
|
|
@ -20,12 +20,18 @@ Contents:
|
|||
.. automodule:: gerber.excellon
|
||||
:members:
|
||||
|
||||
.. automodule:: gerber.render.render
|
||||
:members:
|
||||
|
||||
.. automodule:: gerber.gerber_statements
|
||||
:members:
|
||||
|
||||
.. automodule:: gerber.excellon_statements
|
||||
:members:
|
||||
|
||||
.. automodule:: gerber.cnc
|
||||
:members:
|
||||
|
||||
.. automodule:: gerber.statements
|
||||
:members:
|
||||
|
||||
|
||||
.. automodule:: gerber.utils
|
||||
:members:
|
||||
|
||||
|
|
|
|||
|
|
@ -15,9 +15,11 @@
|
|||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
"""
|
||||
gerber module
|
||||
Gerber Tools
|
||||
============
|
||||
**Gerber Tools**
|
||||
|
||||
gerber-tools provides utilities for working with Gerber (RS-274X) and Excellon
|
||||
files in python.
|
||||
"""
|
||||
|
||||
|
|
|
|||
|
|
@ -15,8 +15,8 @@
|
|||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
"""
|
||||
Excellon module
|
||||
============
|
||||
Excellon File module
|
||||
====================
|
||||
**Excellon file classes**
|
||||
|
||||
This module provides Excellon file classes and parsing utilities
|
||||
|
|
|
|||
|
|
@ -14,7 +14,12 @@
|
|||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
"""
|
||||
Excellon Statements
|
||||
====================
|
||||
**Excellon file statement classes**
|
||||
|
||||
"""
|
||||
|
||||
from .utils import parse_gerber_value, write_gerber_value, decimal_string
|
||||
import re
|
||||
|
|
|
|||
|
|
@ -16,8 +16,8 @@
|
|||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
"""
|
||||
gerber.gerber
|
||||
============
|
||||
Gerber File module
|
||||
==================
|
||||
**Gerber File module**
|
||||
|
||||
This module provides an RS-274-X class and parser
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
#! /usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
"""
|
||||
gerber.statements
|
||||
=================
|
||||
**Gerber file statement classes**
|
||||
Gerber (RS-274X) Statements
|
||||
===========================
|
||||
**Gerber RS-274X file statement classes**
|
||||
|
||||
"""
|
||||
from .utils import parse_gerber_value, write_gerber_value, decimal_string
|
||||
|
|
|
|||
|
|
@ -15,7 +15,13 @@
|
|||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
"""
|
||||
Rendering
|
||||
============
|
||||
**Gerber (RS-274X) and Excellon file rendering**
|
||||
|
||||
Render Gerber and Excellon files to a variety of formats.
|
||||
"""
|
||||
from ..gerber_statements import (CommentStmt, UnknownStmt, EofStmt, ParamStmt,
|
||||
CoordStmt, ApertureStmt, RegionModeStmt,
|
||||
QuadrantModeStmt,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue