X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=doc%2Fsalome%2Fgui%2FGEOM%2Finput%2Ftui_basic_operations.doc;h=aec3a74654c292b456b8695e9a34a0c6dc3958b3;hb=00621ab4f35ece96476fc358acf598d78ec0a95d;hp=50c8a7c3d47afe3b33e7838087bd6ce47219c398;hpb=c00bd1f476c613125e5c4d90d64d1656e185c6e4;p=modules%2Fgeom.git diff --git a/doc/salome/gui/GEOM/input/tui_basic_operations.doc b/doc/salome/gui/GEOM/input/tui_basic_operations.doc index 50c8a7c3d..aec3a7465 100644 --- a/doc/salome/gui/GEOM/input/tui_basic_operations.doc +++ b/doc/salome/gui/GEOM/input/tui_basic_operations.doc @@ -80,7 +80,7 @@ gg.setDisplayMode(id_archimede,1) \endcode \anchor tui_restore_prs_params -

Restore presentation parameters and subshapes

+

Restore presentation parameters and sub-shapes

\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)