Salome HOME
improve comments
authoreap <eap@opencascade.com>
Fri, 11 May 2012 08:12:24 +0000 (08:12 +0000)
committereap <eap@opencascade.com>
Fri, 11 May 2012 08:12:24 +0000 (08:12 +0000)
src/GEOM_SWIG/geompyDC.py

index 145a0badb21e1b7148991d530c42d7685dca5810..bfcb487b06186337542010b027f50529bb47de3b 100644 (file)
@@ -1834,23 +1834,21 @@ class geompyDC(GEOM._objref_GEOM_Gen):
             RaiseIfFailed("MakeBoxTwoPnt", self.PrimOp)
             return anObj
 
-        ## Create a face with specified dimensions along OX-OY coordinate axes,
-        #  with edges, parallel to this coordinate axes.
+        ## Create a face with specified dimensions with edges parallel to coordinate axes.
         #  @param theH height of Face.
         #  @param theW width of Face.
-        #  @param theOrientation orientation belong axis OXY OYZ OZX
+        #  @param theOrientation face orientation: 1-OXY, 2-OYZ, 3-OZX
         #  @return New GEOM.GEOM_Object, containing the created face.
         #
         #  @ref tui_creation_face "Example"
         def MakeFaceHW(self,theH, theW, theOrientation):
             """
-            Create a face with specified dimensions along OX-OY coordinate axes,
-            with edges, parallel to this coordinate axes.
+            Create a face with specified dimensions with edges parallel to coordinate axes.
 
             Parameters:
                 theH height of Face.
                 theW width of Face.
-                theOrientation orientation belong axis OXY OYZ OZX
+                theOrientation face orientation: 1-OXY, 2-OYZ, 3-OZX
 
             Returns:
                 New GEOM.GEOM_Object, containing the created face.