Description for TCL command SplitGeometry updated

This commit is contained in:
Robert Niemöller 2020-11-07 23:24:07 +01:00
parent c4c1c87d53
commit 97e179140c
1 changed files with 3 additions and 6 deletions

View File

@ -34,14 +34,11 @@ class TclCommandSplitGeometry(TclCommand):
# structured help for current command, args needs to be ordered # structured help for current command, args needs to be ordered
help = { help = {
'main': "Runs a merge operation (join) on the Geometry objects.\n" 'main': "Creates a new geometry for every tool and fills it with the tools geometry data",
"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.",
'args': collections.OrderedDict([ '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): def execute(self, args, unnamed_args):