From ed20a3d208a2909e5d0dd66cb477a071b355ef6d Mon Sep 17 00:00:00 2001 From: Juan Pablo Caram Date: Fri, 23 Oct 2015 19:37:08 -0400 Subject: [PATCH] Fixes #161. outname parameter was missing from docs for isolate. --- FlatCAMApp.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/FlatCAMApp.py b/FlatCAMApp.py index dc6bea32..9b155aea 100644 --- a/FlatCAMApp.py +++ b/FlatCAMApp.py @@ -2600,10 +2600,11 @@ class App(QtCore.QObject): 'fcn': isolate, 'help': "Creates isolation routing geometry for the given Gerber.\n" + "> isolate [-dia ] [-passes

] [-overlap ] [-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,