diff options
author | opiopan <opiopan@gmail.com> | 2019-03-31 23:38:07 +0900 |
---|---|---|
committer | opiopan <opiopan@gmail.com> | 2019-03-31 23:38:07 +0900 |
commit | 06ba3e68434e7755f1b19c0c7844d1e0f21da4ad (patch) | |
tree | 9641ba51ed0fac2b669bd00eda3750d2d652ab43 /README.md | |
parent | 53816574a986722d7af26c5597248d9c96f31bd3 (diff) | |
download | gerbonara-06ba3e68434e7755f1b19c0c7844d1e0f21da4ad.tar.gz gerbonara-06ba3e68434e7755f1b19c0c7844d1e0f21da4ad.tar.bz2 gerbonara-06ba3e68434e7755f1b19c0c7844d1e0f21da4ad.zip |
change document
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -88,11 +88,11 @@ dxf.write('outline.gml') ``` You can also translate DXF closed shape such as circle to RX-274x polygon fill sequence.<br> -In order to fill closed shape, ```DM_FILL``` has to be set to ```drawing_mode``` property. In this mode, All object except closed shapes listed below are ignored. +In order to fill closed shape, ```DM_FILL``` has to be set to ```draw_mode``` property. In this mode, All object except closed shapes listed below are ignored. - circle - closed polyline -- closed path which consist of lines and arcs +- closed path which consists of lines and arcs ```python import gerberex @@ -107,7 +107,7 @@ dxf.write('outline.gml') <img alt="mouse bites" src="https://raw.githubusercontent.com/wiki/opiopan/pcb-tools-extension/images/mousebites.png" width=200 align="right"> -If ```DM_MOUSE_BITES``` is specified for ```drawing_mode```, filled circles are arranged along a DXF line object at equal intervals. <br> +If ```DM_MOUSE_BITES``` is specified for ```draw_mode```, filled circles are arranged along a DXF line object at equal intervals. <br> DXF file object in this state can be merged to excellon file also. That means you can arrange mouse bites easily. ```python |