Updated README
This commit is contained in:
parent
af97dcf2a8
commit
100ab899ed
1 changed files with 16 additions and 0 deletions
16
README.md
16
README.md
|
|
@ -5,4 +5,20 @@ gerber-tools
|
|||
|
||||
Tools to handle Gerber and Excellon files in Python.
|
||||
|
||||
Example:
|
||||
|
||||
import gerber
|
||||
from gerber.render import GerberSvgContext
|
||||
|
||||
# Read gerber and Excellon files
|
||||
top_copper = gerber.read('example.GTL')
|
||||
nc_drill = gerber.read('example.txt')
|
||||
|
||||
# Rendering context
|
||||
ctx = GerberSvgContext
|
||||
|
||||
# Create SVG image
|
||||
top_copper.render('top_copper.svg', ctx)
|
||||
nc_drill.render('composite.svg', ctx)
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue