From 06ba3e68434e7755f1b19c0c7844d1e0f21da4ad Mon Sep 17 00:00:00 2001 From: opiopan Date: Sun, 31 Mar 2019 23:38:07 +0900 Subject: change document --- README.md | 6 +++--- 1 file 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.
-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') mouse bites -If ```DM_MOUSE_BITES``` is specified for ```drawing_mode```, filled circles are arranged along a DXF line object at equal intervals.
+If ```DM_MOUSE_BITES``` is specified for ```draw_mode```, filled circles are arranged along a DXF line object at equal intervals.
DXF file object in this state can be merged to excellon file also. That means you can arrange mouse bites easily. ```python -- cgit