Sfoglia il codice sorgente

Description for TCL command SplitGeometry updated

Robert Niemöller 5 anni fa
parent
commit
97e179140c
1 ha cambiato i file con 3 aggiunte e 6 eliminazioni
  1. 3 6
      tclCommands/TclCommandSplitGeometry.py

+ 3 - 6
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):