aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoropiopan <opiopan@gmail.com>2019-03-31 23:38:07 +0900
committeropiopan <opiopan@gmail.com>2019-03-31 23:38:07 +0900
commit06ba3e68434e7755f1b19c0c7844d1e0f21da4ad (patch)
tree9641ba51ed0fac2b669bd00eda3750d2d652ab43
parent53816574a986722d7af26c5597248d9c96f31bd3 (diff)
downloadpcb-tools-extension-06ba3e68434e7755f1b19c0c7844d1e0f21da4ad.tar.gz
pcb-tools-extension-06ba3e68434e7755f1b19c0c7844d1e0f21da4ad.tar.bz2
pcb-tools-extension-06ba3e68434e7755f1b19c0c7844d1e0f21da4ad.zip
change document
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index a3ddf50..4c7f7d3 100644
--- a/README.md
+++ b/README.md
@@ -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