Przeglądaj źródła

Fixes #161. outname parameter was missing from docs for isolate.

Juan Pablo Caram 10 lat temu
rodzic
commit
ed20a3d208
1 zmienionych plików z 5 dodań i 4 usunięć
  1. 5 4
      FlatCAMApp.py

+ 5 - 4
FlatCAMApp.py

@@ -2600,10 +2600,11 @@ class App(QtCore.QObject):
                 'fcn': isolate,
                 'help': "Creates isolation routing geometry for the given Gerber.\n" +
                         "> isolate <name> [-dia <d>] [-passes <p>] [-overlap <o>] [-combine 0|1]\n" +
-                        "   name: Name of the object\n"
-                        "   dia: Tool diameter\n   passes: # of tool width\n" +
-                        "   overlap: Fraction of tool diameter to overlap passes" +
-                        "   combine: combine all passes into one geometry"
+                        "   name: Name of the object.\n"
+                        "   dia: Tool diameter\n   passes: # of tool width.\n" +
+                        "   overlap: Fraction of tool diameter to overlap passes." +
+                        "   combine: combine all passes into one geometry." +
+                        "   outname: Name of the resulting Geometry object."
             },
             'cutout': {
                 'fcn': cutout,