From 97e179140c65d8000dfc4205e9bed300a4bede85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Niem=C3=B6ller?= Date: Sat, 7 Nov 2020 23:24:07 +0100 Subject: [PATCH] Description for TCL command SplitGeometry updated --- tclCommands/TclCommandSplitGeometry.py | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/tclCommands/TclCommandSplitGeometry.py b/tclCommands/TclCommandSplitGeometry.py index 75a210ee..acbad273 100644 --- a/tclCommands/TclCommandSplitGeometry.py +++ b/tclCommands/TclCommandSplitGeometry.py @@ -34,14 +34,11 @@ class TclCommandSplitGeometry(TclCommand): # structured help for current command, args needs to be ordered help = { - 'main': "Runs a merge operation (join) on the Geometry objects.\n" - "The names of the Geometry objects to be merged will be entered after the outname,\n" - "separated by spaces. See the example below.\n" - "WARNING: if the name of an Geometry objects has spaces, enclose the name with quotes.", + 'main': "Creates a new geometry for every tool and fills it with the tools geometry data", 'args': collections.OrderedDict([ - ('source_name', 'Name of the new Geometry Object made by joining of other Geometry objects. Required'), + ('source_name', 'Name of the source Geometry Object. Required'), ]), - 'examples': ['join_geometry merged_new_geo geo_name_1 "geo name_2"'] + 'examples': ['split_geometry my_geometry'] } def execute(self, args, unnamed_args):