diff --git a/doc/salome/gui/GEOM/input/geometrical_object_properties.doc b/doc/salome/gui/GEOM/input/geometrical_object_properties.doc
index 21b72f7f5..9b21c7792 100644
--- a/doc/salome/gui/GEOM/input/geometrical_object_properties.doc
+++ b/doc/salome/gui/GEOM/input/geometrical_object_properties.doc
@@ -2,7 +2,9 @@
\page geometrical_obj_prop_page Geometrical Object Properties
-
Geometrical Object Type
+Geometrical Object Types
+
+GetType function:
The Type property of the geometrical object specifies the
way the object has been created. It is an integer identifier that
@@ -16,8 +18,7 @@ IGES, STEP or other CAD file, has type equal to 1.
The possible values of the geometrical objects are listed in the table below:
-
+
ID | STRING |
0 | COPY |
1 | IMPORT |
@@ -66,13 +67,14 @@ The possible values of the geometrical objects are listed in the table below:
44 | 3DSKETCHER |
45 | FILLET_2D |
46 | FILLET_1D |
+ &nbps; | &nbps; |
Also geompy.py module provides a helper function ShapeIdToType()
that allows converting of the geometrical object type id value
to its string representation.
-For example:
+For example:
\code
import geompy
box = geompy.MakeBoxDXDYDZ(10,10,10)
@@ -80,6 +82,24 @@ type = geompy.ShapeIdToType(box.GetType())
print type
\endcode
-The above code prints "BOX" value.
+The above code prints "BOX" value.
+
+GetShapeType function:
+
+There are the shape type in terms of its topology nature, possible
+values are: { COMPOUND, COMPSOLID, SOLID, SHELL, FACE, WIRE, EDGE,
+VERTEX, SHAPE }
+This type can be retrieved using geompy function GetShapeType().
+
+Example code:
+\code
+import geompy
+import GEOM
+box = geompy.MakeBoxDXDYDZ(10,10,10)
+type = geompy.GetShapeType()
+print type == GEOM.SOLID
+\endcode
+
+The code above prints "True".
*/