Salome HOME
Implementation of the "0020839: EDF 1370 DOC : Update of the TUI features documentati...
[modules/geom.git] / doc / salome / gui / GEOM / input / tui_basic_operations.doc
index 50c8a7c3d47afe3b33e7838087bd6ce47219c398..aec3a74654c292b456b8695e9a34a0c6dc3958b3 100644 (file)
@@ -80,7 +80,7 @@ gg.setDisplayMode(id_archimede,1)
 \endcode
 
 \anchor tui_restore_prs_params
-<br><h2>Restore presentation parameters and subshapes</h2>
+<br><h2>Restore presentation parameters and sub-shapes</h2>
 
 \code
 import geompy
@@ -113,8 +113,8 @@ geompy.addToStudy(partition1, "Partition_1")
 geompy.addToStudy(partition2, "Partition_2")
 geompy.addToStudy(partition3, "Partition_3")
 
-# Restore presentation parameters and subshapes
-# different methods can be used to find the subshapes in the result:
+# Restore presentation parameters and sub-shapes
+# different methods can be used to find the sub-shapes in the result:
 # GetInPlace, GetSame, GetInPlaceByHistory, GetShapesOnShape.
 # By default, GetInPlace method is used (GEOM.FSM_GetInPlace)
 geompy.RestoreSubShapes(partition1)
@@ -125,10 +125,10 @@ geompy.RestoreSubShapes(partition2, [], GEOM.FSM_GetInPlace)
 # but restore only the passed.
 geompy.RestoreSubShapes(partition3, [tra], GEOM.FSM_GetInPlaceByHistory)
 
-# To find subshapes in a transformed shape only one method could be
+# To find sub-shapes in a transformed shape only one method could be
 # used: pass GEOM.FSM_Transformed for that.
 # True passed for the last argument, means that the transformed shape
-# will inherit colour and subshapes from its first argument (see above
+# will inherit colour and sub-shapes from its first argument (see above
 # MakeTranslation).
 geompy.RestoreSubShapes(tra, [], GEOM.FSM_Transformed, True)