diff --git a/doc/salome/gui/GEOM/input/creating_lcs.doc b/doc/salome/gui/GEOM/input/creating_lcs.doc
index 2516af99d..0188c76ba 100644
--- a/doc/salome/gui/GEOM/input/creating_lcs.doc
+++ b/doc/salome/gui/GEOM/input/creating_lcs.doc
@@ -26,8 +26,8 @@ of the LCS are calculated automatically basing on the selected object.
coordinates of origin by a point and axes directions by a line or a
vector.
\n TUI command: geompy.MakeMarkerPntTwoVec(Center, VectorX,
-VectorY) where Center is a point specified the coordinate system location,
-VectorX is a derection of OX axis and VectorY direction of OY axis.
+VectorY) where Center is the origin of the coordinate system,
+VectorX is the direction of OX axis and VectorY is the direction of OY axis.
\n Arguments: Name + 1 point of origin + X axis direction, Y axis direction.
\image html neo-localcs3.png
@@ -40,6 +40,6 @@ and in 3D viewer.
\image html image145.png "Local Coordinate System"
-TUI Script provide you with useful example of creation of
-\ref tui_creation_lcs "Local Coordinate System".
-*/
\ No newline at end of file
+TUI Script provides you with a useful example of
+\ref tui_creation_lcs "Local Coordinate System" creation.
+*/
diff --git a/doc/salome/gui/GEOM/input/creating_pipetshape.doc b/doc/salome/gui/GEOM/input/creating_pipetshape.doc
index 823bc3eb9..d66250295 100644
--- a/doc/salome/gui/GEOM/input/creating_pipetshape.doc
+++ b/doc/salome/gui/GEOM/input/creating_pipetshape.doc
@@ -5,23 +5,23 @@
To create a \b PipeTShape in the Main Menu select New Entity - >
Advanced - > PipeTShape
-Specify the parameters of the PipeTShape object creation in the opened dialog
+Specify the parameters of the PipeTShape object in the opened dialog
box and press "Apply" or "Apply & Close" button.
-Result of each operation will be a GEOM_Object.
+The result of the operation will be a GEOM_Object.
TUI Command: geompy.MakePipeTShape(R1, W1, L1, R2, W2, L2, HexMesh=True, P1=None, P2=None, P3=None)
Arguments:
-- \b R1 - Radius of main T-shape pipe.
-- \b W1 - Thickness of main T-shape pipe.
-- \b L1 - Length of main T-shape pipe.
-- \b R2 - Radius of incident T-shape pipe.
-- \b W2 - Thickness of incident T-shape pipe.
-- \b L2 - Length of incident T-shape pipe.
-- \b HexMesh - If True, the shape is splitted in blocks (suitable for hexaedral mesh).
-- \b P1 - First junction point of main pipe (GEOM Vertex).
-- \b P2 - Second junction point of main pipe (GEOM Vertex).
-- \b P3 - Junction point of incident pipe (GEOM Vertex).
+- \b R1 - Radius of the main T-shape pipe.
+- \b W1 - Thickness of the main T-shape pipe.
+- \b L1 - Length of the main T-shape pipe.
+- \b R2 - Radius of the incident T-shape pipe.
+- \b W2 - Thickness of the incident T-shape pipe.
+- \b L2 - Length of the incident T-shape pipe.
+- \b HexMesh - If True, the shape is splitted into blocks (suitable for hexaedral mesh).
+- \b P1 - First junction point of the main pipe (GEOM Vertex).
+- \b P2 - Second junction point of the main pipe (GEOM Vertex).
+- \b P3 - Junction point of the incident pipe (GEOM Vertex).
\image html pipetshape_dlg.png
@@ -33,8 +33,8 @@ A Pipe T-Shape can be created with a chamfer at the junction of the main and the
TUI Command: geompy.MakePipeTShapeChamfer(R1, W1, L1, R2, W2, L2, H, W, HexMesh=True, P1=None, P2=None, P3=None)
-Arguments are the same as normal Pipe T-Shape plus:
-- \b H - Height of the chamfer along incident pipe.
+The arguments are the same as of the normal Pipe T-Shape plus:
+- \b H - Height of the chamfer along the incident pipe.
- \b W - Width of the chamfer along the main pipe.
Example:
@@ -45,7 +45,7 @@ A Pipe T-Shape can be created with a fillet at the junction of the main and the
TUI Command: geompy.MakePipeTShapeFillet(R1, W1, L1, R2, W2, L2, RF, HexMesh=True, P1=None, P2=None, P3=None)
-Arguments are the same as normal Pipe T-Shape plus:
+The arguments are the same as of the normal Pipe T-Shape plus:
- \b RF - Radius of the fillet.
Example:
diff --git a/doc/salome/gui/GEOM/input/deflection.doc b/doc/salome/gui/GEOM/input/deflection.doc
index b2f419a94..1d523f3b4 100644
--- a/doc/salome/gui/GEOM/input/deflection.doc
+++ b/doc/salome/gui/GEOM/input/deflection.doc
@@ -2,8 +2,8 @@
\page deflection_page Deflection
-\n In this menu you can change the deviation coefficient of the
-shape. Smaller coefficient provides better quality of the shape in the
+\n In this menu you can change the deflection coefficient of the
+shape. The less is the coefficient the better is the quality of the shape in the
viewer.
\n Arguments: 1 floating point value (deviation coefficient).
diff --git a/doc/salome/gui/GEOM/input/geometrical_object_properties.doc b/doc/salome/gui/GEOM/input/geometrical_object_properties.doc
index 78de472cd..e323c6932 100644
--- a/doc/salome/gui/GEOM/input/geometrical_object_properties.doc
+++ b/doc/salome/gui/GEOM/input/geometrical_object_properties.doc
@@ -8,7 +8,7 @@
The Type property of the geometrical object specifies the
way the object has been created. It is an integer identifier that
-has predefined value depending on the function type used for the
+has a predefined value depending on the function type used for the
object creation. The type of the object can be retrieved using the
\b %GetType() function of the \b GEOM_Object interface.
@@ -70,10 +70,9 @@ The possible values of the geometrical objects are listed in the table below:
Also geompy.py module provides a helper function ShapeIdToType()
-that allows converting of the geometrical object type id value
-to its string representation.
+that allows converting the geometrical object id value to its string representation.
-For example:
+For example, the output of the following code:
\code
import geompy
box = geompy.MakeBoxDXDYDZ(10,10,10)
@@ -81,12 +80,12 @@ type = geompy.ShapeIdToType(box.GetType())
print type
\endcode
-The above code prints "BOX" value.
+will be the "BOX" value.
GetShapeType function:
The ShapeType property specifies the geometrical object in terms of
-its topology nature.
+its topologic nature.
The possible values are defined in the GEOM namespace: { COMPOUND, COMPSOLID,
SOLID, SHELL, FACE, WIRE, EDGE, VERTEX, SHAPE }
@@ -94,7 +93,7 @@ SOLID, SHELL, FACE, WIRE, EDGE, VERTEX, SHAPE }
This type can be retrieved using the \b %GetShapeType() function
of the \b GEOM_Object interface.
-Example code:
+For example:
\code
import geompy
import GEOM
@@ -103,6 +102,6 @@ type = box.GetShapeType()
print type == GEOM.SOLID
\endcode
-This code prints "True".
+The result is "True".
*/
diff --git a/doc/salome/gui/GEOM/input/index.doc b/doc/salome/gui/GEOM/input/index.doc
index d1485ef14..d28e8c343 100644
--- a/doc/salome/gui/GEOM/input/index.doc
+++ b/doc/salome/gui/GEOM/input/index.doc
@@ -13,9 +13,11 @@ using a wide range of functions;