Salome HOME
Typo-fix by Kunda
authoreap <eap@opencascade.com>
Thu, 28 Dec 2017 11:41:31 +0000 (14:41 +0300)
committereap <eap@opencascade.com>
Thu, 28 Dec 2017 11:41:31 +0000 (14:41 +0300)
http://www.salome-platform.org/forum/forum_9/22126441

25 files changed:
doc/salome/examples/free_boundaries.py
doc/salome/gui/GEOM/input/archimede.doc
doc/salome/gui/GEOM/input/blocks_operations.doc
doc/salome/gui/GEOM/input/check_self_intersections.doc
doc/salome/gui/GEOM/input/creating_circle.doc
doc/salome/gui/GEOM/input/creating_explode.doc
doc/salome/gui/GEOM/input/creating_lcs.doc
doc/salome/gui/GEOM/input/creating_line.doc
doc/salome/gui/GEOM/input/creating_plane.doc
doc/salome/gui/GEOM/input/creating_polyline.doc
doc/salome/gui/GEOM/input/creating_sketcher.doc
doc/salome/gui/GEOM/input/creating_sphere.doc
doc/salome/gui/GEOM/input/creating_squareface.doc
doc/salome/gui/GEOM/input/display_mode.doc
doc/salome/gui/GEOM/input/explode_on_blocks_operation.doc
doc/salome/gui/GEOM/input/fast_intersection.doc
doc/salome/gui/GEOM/input/managing_dimensions.doc
doc/salome/gui/GEOM/input/modify_location_operation.doc
doc/salome/gui/GEOM/input/restore_presentation_parameters.doc
idl/GEOM_Gen.idl
src/EntityGUI/EntityGUI_FeatureDetectorDlg.cxx
src/EntityGUI/EntityGUI_SketcherDlg.cxx
src/GEOMAlgo/GEOMAlgo_AlgoTools.hxx
src/GEOM_SWIG/geomBuilder.py
src/Tools/t_shape/t_shape_dialog.ui

index 8fe0d475b612bd4ff8132ee62e3d8cef140deca6..361739a91ab126274def583f7cb9f10ac250449c 100644 (file)
@@ -19,7 +19,7 @@ for fi in range(len(faces)):
     fid = geompy.addToStudyInFather(cut, faces[fi], "Face %d" % (fi+1))
     isSuccess, closedWires, openWires = geompy.GetFreeBoundary(faces[fi])
     if isSuccess:
-        print "Check free boudaries in face %d: OK" % (fi+1)
+        print "Check free boundaries in face %d: OK" % (fi+1)
         print "-- Nb of closed boundaries = %d" % len(closedWires)
         for wi in range(len(closedWires)):
             wid = geompy.addToStudyInFather(faces[fi], closedWires[wi], "Closed wire %d" % (wi+1))
@@ -30,6 +30,6 @@ for fi in range(len(faces)):
             pass
         pass
     else:
-        print "Check free boudaries in face %d: KO" % (fi+1)
+        print "Check free boundaries in face %d: KO" % (fi+1)
         pass
     pass
index aed6376a55b870ea03f1af6d3fa0995dab3545c7..c89be83704faeba3a5aa1e3d606edf75b0450059 100644 (file)
@@ -13,7 +13,7 @@ water-line of the object plunged into the water (in Z direction).
 \n <b>TUI Command:</b>
 <em>geompy.Archimede(Shape,Weight,WaterDensity,MeshingDeflection),</em>
  where \em Shape is a shape to put into the water, \em Weight is a weight of
-the shape, \em WaterDensity  is density of water, \em MeshingDeflection is a
+the shape, \em WaterDensity is density of water, \em MeshingDeflection is a
 deflection of the mesh, using to compute the section.
 \n <b>Arguments:</b> Name + 1 shape  + 3 values (Weight, Water Density
 & Meshing Deflection).
index 685f99509e2e49843b7b29526b6774eabf4e6968..a266309d655575b0a2a5ef655b7f86ecb46efdee 100644 (file)
@@ -2,7 +2,7 @@
 
 \page blocks_operations_page Blocks Operations
 
-The solids built by blocks \ref  build_by_blocks_page can be
+The solids built by blocks \ref build_by_blocks_page can be
 processed with blocks transformation operations: 
 
 <ul>
index 8533274e27a496a38e11ff2fb100e2c269ee3d55..55a9cb6ad0629b59e695ad2f9c16f7fc3fad3575 100644 (file)
@@ -45,7 +45,7 @@ This operation allows quickly detecting self-interferences of the given shape us
 The algorithm works on the face level, i.e. it computes only face-to-face intersections. No additional intersection types are computed.
 
 This can be useful to detect all intersections between subshapes of type "surface" in an assembly.
-The result quality will depend on the tesselation quality. However, small deflection values can significantly decrease the performance of the algorithm.
+The result quality will depend on the tessellation quality. However, small deflection values can significantly decrease the performance of the algorithm.
 Nevertheless, the performance of Fast Intersect algorithm is much higher than that of the topological intersection.
 
 \image html measures13.png
@@ -53,7 +53,7 @@ Nevertheless, the performance of Fast Intersect algorithm is much higher than th
 In this dialog:
 
 - \b Object - the checked object. \b Selection button allows picking it in the viewer or in the object browser.
-- <b>Deflection coefficient</b> -  a linear deflection coefficient that defines the tesselation quality. If theDeflection <= 0, default deflection 0.001 is used.
+- <b>Deflection coefficient</b> -  a linear deflection coefficient that defines the tessellation quality. If theDeflection <= 0, default deflection 0.001 is used.
 - <b>Detect gaps with tolerance</b> specifies the distance between shapes used for detecting gaps:
      - if theTolerance <= 0, the algorithm detects intersections;
      - if theTolerance > 0, the algorithm detects gapss. 
@@ -67,7 +67,7 @@ If no interferences are selected, all of them are published in the study. Each i
 \n <b>TUI Command:</b> <em>geompy.CheckSelfIntersectionsFast(theShape, theDeflection, theTolerance),</em> \n
 where: \n
 \em theShape is the shape checked for validity. \n
-\em theDeflection that specifies the quality of tesselation. 
+\em theDeflection that specifies the quality of tessellation. 
 \em theTolerance Specifies the distance between shapes used for detecting gaps.
 
 See also a \ref tui_check_self_intersections_fast_page "TUI example".
index 4ea76099347ecb30590c2bcdea9f70b48d9a3bd1..b445a22f2dae3b92702d7a2ec0cfd1d2b9a96459 100644 (file)
@@ -15,7 +15,7 @@ Radius)</em>
 \n <b>Arguments:</b> Name + 1 vertex (for the center) + 1 edge (for
 the direction) + Radius.
 
-\note By default it is presumed that the <b>Center Point</b> is located at the  Origin of the global
+\note By default it is presumed that the <b>Center Point</b> is located at the Origin of the global
 coordinate system, and the  \b Vector corresponds to OZ axis of the global
 coordinate system.
 
index 69377397357422652da8702a20691801ffe383fe..b4677831fbfe14f61f332baa6c2e15e173c86a9f 100644 (file)
@@ -8,7 +8,7 @@ select <b>New Entity > Explode</b>. This operation opens the
 
 \image html neo-obj1.png
 
-To create a list of  sub-shapes (vertices, edges, wires etc.) of the
+To create a list of sub-shapes (vertices, edges, wires etc.) of the
 given shape using the \b Explode operation, you need to define the <b>Main
 Object</b>, which will be exploded and the <b>Type of Sub-shapes</b> you wish to
 obtain from it.
index 1c06b2cc3d8d2c26145fc0d3ebb89c317d4613e1..140c05c24e249a7eddf0926eb491695d0510cddf 100644 (file)
@@ -8,7 +8,7 @@ To create a <b>Local Coordinate System</b> in the <b>Main Menu</b> select <b>New
 \n Firstly, you can define the values of X, Y, and Z coordinates of origin and the directions of X and Y axes directly in the menu.
 \n <b>TUI command:</b> <em>geompy.MakeMarker(OX, OY, OZ, XDX, XDY, XDZ,
 YDX, YDY, YDZ)</em>, where OX, OY, OZ are coordinates of the origin of
-LCS, XDX, XDY, XDZ is a vector of OX  direction of the LCS and YDX,
+LCS, XDX, XDY, XDZ is a vector of OX direction of the LCS and YDX,
 YDY, YDZ is a a vector of OY direction of the LCS.
 \n <b>Arguments:</b> Name + Coordinates of origin, X axis direction, Y axis direction.
 
index 7f7daa3d9ad8ac99c780daa6fe9dea8b90c6328e..8332c990d1bf42b3613b153b23bd0f22a3ee5df4 100644 (file)
@@ -9,7 +9,7 @@ There are 2 algorithms to create a \b Line in the 3D space.
 The Result of each operation will be a GEOM_Object (edge).
 
 \n Firstly you can define a \b Line by \b Point1 and \b Point2,
-which are the points through  which the \b Line passes.
+which are the points through which the \b Line passes.
 \n <b>TUI Command:</b> <em>geompy.MakeLineTwoPnt(Point1, Point2)</em>
 \n <b>Arguments:</b> Name + 2 vertices.
 
@@ -30,7 +30,7 @@ which are the points through  which the \b Line passes.
 \b NB! There is another way to create a line, which is currently
 accessible only via \b TUI commands.
 
-You can define a line  passing through the given \b Point and parallel
+You can define a line passing through the given \b Point and parallel
 to the given \b Vector.
 \n <b>TUI Command:</b> <em>geompy.MakeLine(Point, Vector)</em>
 
index 5573f61e456b9848e3a68bcd32c3cd2a7c1b6a4f..afdae95e97b6996520e7573ae53084697c9d3194 100644 (file)
@@ -8,7 +8,7 @@ Basic - > Plane</b>
 \n There are three algorithms to create a plane in the 3D space.
 \n The \b Result of each operation will be a GEOM_Object (face).
 
-\n Firstly, you can define a \b Plane by a \b Point through which  the
+\n Firstly, you can define a \b Plane by a \b Point through which the
 plane passes, a \b Vector giving a normal of the plane and a <b>Size
 of the Plane</b> (size of a side of quadrangle face, representing the
 plane).
@@ -19,7 +19,7 @@ the size of the plane).
 \image html plane1.png
 
 \n Secondly, you can define a \b Plane by three \b Points through
-which  the plane passes and a <b>Size of the Plane</b>.
+which the plane passes and a <b>Size of the Plane</b>.
 \n <b>TUI Command:</b> <em>geompy.MakePlaneThreePnt(Point1, Point2, Point3, TrimSize)</em>
 \n <b>Arguments:</b> Name + 3 vertices + 1 value (to define the size
 of the plane).
index 2ca7f4ba9fd79e04fb2c0b5a85234884159a2a21..f7d5a17f81b2999db98a5c404cb39896c56d3c1a 100644 (file)
@@ -9,7 +9,7 @@ To create a <b>2D Polyline</b> select in the main menu  <b>New Entity -> Basic -
 \image html polyline_dlg.png
 
 A polyline represents a section or a set of sections. Each section is constructed from a sequence of 2D points
-connected  by either linear segments or an interpolation curve. Every section has its own attributes:
+connected by either linear segments or an interpolation curve. Every section has its own attributes:
 - \b Name, 
 - \b Type (Polyline or Spline),
 - \b Closed flag.
index 159361772d2516a72ac5fb73c115142fa8c863ba..2dc8058142fb12095177d92e75a3a504cf289d83 100644 (file)
@@ -2,7 +2,7 @@
 
 \page create_sketcher_page 2D Sketcher
 
-The 2D Sketcher allows drawing  arbitrary 2D shapes. 
+The 2D Sketcher allows drawing arbitrary 2D shapes. 
 
 To create a <b>2D Sketch</b> select in the main menu  <b>New Entity -> Basic -> 2D Sketch</b>. 
 
@@ -73,7 +73,7 @@ If an \b ark radio button is chosen, \b Point or \b Direction define the locatio
 
 \image html 2dsketch12.png
 
-- \b Radius radio-button allows creating a more limited arc segment by defining a custom  ark radius, which must be greater than half of the distance between the last point and the end point of the arc. 
+- \b Radius radio-button allows creating a more limited arc segment by defining a custom ark radius, which must be greater than half of the distance between the last point and the end point of the arc. 
        
 \image html 2dsketch8.png
 
index b772bdac8a6041dec1f757bbacb08f462db427b9..9bf2e0ec72258a3f0e38487888a9bcd9221eb1f0 100644 (file)
 \n Secondly, you can define a \b Sphere with the center at the origin of
 coordinate system by the \b Radius.
 \n <b>TUI Command:</b> <em>geompy. MakeSphereR(Radius)</em>
-\n <b>Arguments:</b> Name + 1  value (Radius from the origin).
+\n <b>Arguments:</b> Name + 1 value (Radius from the origin).
 
 \image html sphere2.png
 
-\n <b>NB!</b> The is another way to create a\b  Sphere, which is
+\n <b>NB!</b> The is another way to create a \b Sphere, which is
 currently accessible only via \b TUI commands.
 \n You can define the \b Sphere by the coordinates of the <b>Center
 Point</b> and its \b Radius (in this way you don't need to create it in advance).
index f10b0e35026a450dd3b01d55501b46dac23a5e19..7fa7ea5370994145c0e7139cb9f820f82190d457 100755 (executable)
@@ -4,7 +4,7 @@
 
 A primitive called \b Rectangle is a rectangular face of certain dimensions and orientation
 
-To create a \b Rectangle  in the <b>Main Menu</b> select <b>New Entity - >
+To create a \b Rectangle in the <b>Main Menu</b> select <b>New Entity - >
 Primitives - > Rectangle</b>
 
 \n There are 2 algorithms to create a \b Rectangle in the 3D space. 
@@ -15,7 +15,7 @@ of coordinates defining its boundaries by the height and the width and its axis
 radio buttons (OXY, OYZ or OZX).This 
 means that the \b Rectangle will lie in "OXY", "OYZ" or "OZX" plane correspondingly.
 \n <b>TUI Command:</b> <em>geompy.MakeFaceHW(Height, Width, Orientation)</em>
-\n <b>Arguments:</b> Name + 3 values (Dimensions at origin: heigth, width and
+\n <b>Arguments:</b> Name + 3 values (Dimensions at origin: height, width and
 orientation).
 
 
index af842ccf1dff480a731e446fb79062bdb830887e..bffcf081e2a2476662e3b40b7e5f0c3978ec9dc2 100644 (file)
@@ -3,7 +3,7 @@
 \page display_mode_page Display Mode
 
 \n This option is relevant for viewing 3D objects. Wireframe mode means
-that you can see only  edges of the object, while its shells remain
+that you can see only edges of the object, while its shells remain
 transparent. Shading mode means that the shells are filled with color.
 
 \n To change the display mode right-click on this geometrical object
index abfaf09bdee8f14f4442d9bd476904ef1a4ac1b5..f1f3141612f1ef3f8beee12b2a9b60fcd6ffec8a 100644 (file)
@@ -16,7 +16,7 @@ from a compound.
 \n <b>TUI Command:</b> <em>geompy.MakeBlockExplode(Compound,
 MinNbFaces, MaxNbFaces),</em> where \em Compound is a compound to be
 exploded into the blocks, \em MinNbFaces, \em MaxNbFaces are correspondingly
-the minimal and  the maximal number of faces of the resulting blocks.
+the minimal and the maximal number of faces of the resulting blocks.
 \n <b>Arguments:</b> 1 compound + 2 integers (min. and max. number of
 faces in the block to be extracted).
 
index f27a6d94461026be3e3bbb78379e3058393e2577..04c1da79fc1e99e06893d1d1b709586072a76d2e 100644 (file)
@@ -40,7 +40,7 @@ further analysis (see below).
 
 \note The result quality depends on the quality of triangulation. Changing the value of the deflection coefficient
 parameter can strongly affect the result. However, small values of the deflection coefficient might lead to
-some performance loss of the algorithm, as number of triangles of the tesselation mesh depends on this parameter.
+some performance loss of the algorithm, as number of triangles of the tessellation mesh depends on this parameter.
 
 Press <b>Apply and Close</b> or \b Apply button to store the selected sub-shapes in the study for further analysis.
 The selection will be published as a compound containing intersected sub-shapes from both source objects.
index 8b49f3ad190c1b4a462de6ce565d6899acd5dee0..3e2b35202e5d0385ffca54c365c58198ec03f74a 100644 (file)
@@ -12,7 +12,7 @@ It can be accessed from the main menu via <b>Measures -> Dimensions -> Manage Di
 \r
 <b>List of Dimensions</b>\r
 \r
-This dialog provides the list of dimensions shown in the view for the selected geometrical <b>Object</b>. The list items are sorted by  dimension type: <b>Distance</b>, <b>Diameter</b> and <b>Angle</b>. \r
+This dialog provides the list of dimensions shown in the view for the selected geometrical <b>Object</b>. The list items are sorted by dimension type: <b>Distance</b>, <b>Diameter</b> and <b>Angle</b>. \r
 \r
 It is possible to show/hide a dimension in the view by checking on/off the box to the left of its name. \r
 \r
@@ -40,7 +40,7 @@ The following dimensions can be shown:
 </ul>\r
 </li>\r
 \r
-<li> <b>Diameter </b> of an an arc, a circular edge or face, a sphere, a cylinder, a cone or a  torus.</li> \r
+<li> <b>Diameter </b> of an an arc, a circular edge or face, a sphere, a cylinder, a cone or a torus.</li> \r
 \r
 <li> <b>Angle.</b> The angle dimension can be defined in one of two possible ways :  </li>\r
 \r
index 68c7e746b035866ea2e195f805c7aeb525d9fee1..dc4157eea630fc0c218c9494d6b56182e443b19f 100644 (file)
@@ -22,9 +22,9 @@ System in the center of it is to the left .
 
 \image html image30.png
 
-\n The second algorithm  modifies the location of the \b Object(s) using \b Start
+\n The second algorithm modifies the location of the \b Object(s) using \b Start
 and \b End \b LCS, although the final position of the object will not
-coincide with the center of  either of the two systems. In this method
+coincide with the center of either of the two systems. In this method
 the object is shifted from its initial position by the value of the
 remainder after subtraction of the coordinates of the <b>Start LCS</b> from
 the coordinates of the <b>End LCS</b>.
@@ -53,7 +53,7 @@ translated cube at the position (-100;0;0)
 \image html image4.png
 
 The third algorithm modifies the location of the \b Object(s) using the <b>Path object</b> (Wire or Edge)
-and the \b Distance parameter (ranging from 0 to 1) defining  how far the object will move along the path.
+and the \b Distance parameter (ranging from 0 to 1) defining how far the object will move along the path.
 \n <b>Create a copy</b> checkbox allows to keep the initial object,
 otherwise it will be removed.
 \n <b>Select Unpublished edges</b> checkbox allows to select sub-shape edges on
index abbc083583e5beadf648bd1aee376458f0511112..55694bd8bc4be9c03a7736438291f971cee4db4f 100644 (file)
@@ -27,7 +27,7 @@ The resulting shape inherits the sub-shapes and the colour of Box_1.
 
 \image html restore-ss-viewer-cut.png "The resulting shape"
 
-Second, we examine the case when the  resulting shape is composed from multiple arguments
+Second, we examine the case when the resulting shape is composed from multiple arguments
 (after all Boolean operations, except for Cut, or after the partition with
 several object shapes, or if the resulting shape is a compound).
 
index cd8f8c8089006c8f4d18d5b1826a0e4a87490e5f..6deaf29527a2f966aaf301d77ae0f7b278a95926 100644 (file)
@@ -1731,7 +1731,7 @@ module GEOM
 
 
     /*!
-     *  \brief Add / Remove material to / from  a solid by extrusion of the base shape on the given distance.
+     *  \brief Add / Remove material to / from a solid by extrusion of the base shape on the given distance.
      *  \param theInitShape Initial shape on which to perform the feature.It has to be a solid or 
      *   a compound made of a single solid
      *  \param theBase Edge or wire defining the base shape to be extruded. 
@@ -1821,7 +1821,7 @@ module GEOM
      *
      *  The path shape can be a wire or an edge.
      *  the several profiles can be specified in the several locations of path.
-     *  \param theSeqBases - list of  Bases shape to be extruded.
+     *  \param theSeqBases - list of Bases shape to be extruded.
      *  \param theLocations - list of locations on the path corresponding
      *                        specified list of the Bases shapes. Number of locations
      *                        should be equal to number of bases or list of locations can be empty.
@@ -1855,7 +1855,7 @@ module GEOM
      *
      *  The path shape can be a shell or a face.
      *  the several profiles can be specified in the several locations of path.
-     *  \param theSeqBases - list of  Bases shape to be extruded.
+     *  \param theSeqBases - list of Bases shape to be extruded.
      *  \param theSeqSubBases - list of corresponding sub-shapes of section shapes.
      *  \param theLocations - list of locations on the path corresponding
      *                        specified list of the Bases shapes. Number of locations
@@ -2840,7 +2840,7 @@ module GEOM
 
     /*!
      *  \brief Create a quadrangle face from four edges. Order of Edges is not
-     *  important. It is  not necessary that edges share the same vertex.
+     *  important. It is not necessary that edges share the same vertex.
      *  \param theEdge1,theEdge2,theEdge3,theEdge4 Edges for the face bound.
      *  \return New GEOM_Object, containing the created face.
      */
@@ -2875,7 +2875,7 @@ module GEOM
      *  \brief Create a hexahedral solid, bounded by the six given faces. Order of
      *  faces is not important. 
      *
-     *  It is  not necessary that Faces share the same edge.
+     *  It is not necessary that Faces share the same edge.
      *  \param theFace1,theFace2,theFace3,theFace4,theFace5,theFace6 Faces for the hexahedral solid.
      *  \return New GEOM_Object, containing the created solid.
      */
@@ -4709,7 +4709,7 @@ module GEOM
   interface GEOM_IGroupOperations : GEOM_IOperations
   {
     /*!
-     *  \brief Creates a new group which will store  sub-shapes of theMainShape
+     *  \brief Creates a new group which will store sub-shapes of theMainShape
      *  \param theMainShape is a GEOM_Object on which the group is selected
      *  \param theShapeType defines a shape type of the group
      *  \return a newly created GEOM group
index b33b7a7d6613642816024a649c54503765870a0c..95bc2cc6820be15f432d06bee79819cd28aaf761 100644 (file)
@@ -450,7 +450,7 @@ void EntityGUI_FeatureDetectorDlg::SelectionIntoArgument()
       myDetector->SetPath( theImgFileName.toStdString() );
       height            =  myDetector->GetImgHeight();
       width             =  myDetector->GetImgWidth();
-      pictureLeft       = -0.5 * width;              // X coordinate of the top left  corner of the background image in the view
+      pictureLeft       = -0.5 * width;              // X coordinate of the top left corner of the background image in the view
       pictureTop        =  0.5 * height;             // Y coordinate of both top corners
       
     } 
index 2a18630260e6a0494256b4d37bc17f3dfc220ce9..8cc523c62df4f501d5b0dc01354894207a5fe1b7 100644 (file)
@@ -2120,7 +2120,7 @@ QString EntityGUI_SketcherDlg::GetNewCommand( QString& theParameters )
   QString myNewCommand = ":";
   SUIT_ResourceMgr* resMgr = SUIT_Session::session()->resourceMgr();
   int aPrecision = resMgr->integerValue( "Geometry", "length_precision", 6 );
-  int DigNum = qAbs(aPrecision);                   // options for the format of numbers in  myNewCommand
+  int DigNum = qAbs(aPrecision);                   // options for the format of numbers in myNewCommand
   char Format = 'f';
   if ( aPrecision < 0 )                            // f --> DigNum is the number of digits after the decimal point
     Format = 'g';                                  // g --> DigNum is the maximum number of significant digits 
@@ -2319,7 +2319,7 @@ bool EntityGUI_SketcherDlg::execute( ObjectList& objects )
   MESSAGE("EntityGUI_SketcherDlg::execute")
   SUIT_ResourceMgr* resMgr = SUIT_Session::session()->resourceMgr();
   int aPrecision = resMgr->integerValue( "Geometry", "length_precision", 6 );
-  int DigNum = qAbs(aPrecision);                   // options for the format of numbers in  myNewCommand
+  int DigNum = qAbs(aPrecision);                   // options for the format of numbers in myNewCommand
   char Format = 'f';
   if ( aPrecision < 0 )                            // f --> DigNum is the number of digits after the decimal point
     Format = 'g';                                  // g --> DigNum is the maximum number of significant digits 
index a737460dc214b72f2c529b10cdb96d0edde340f9..b6e56e232df1500ef6b3c922920da7699682f204 100755 (executable)
@@ -67,7 +67,7 @@ class GEOMAlgo_AlgoTools  {
                            gp_Vec& aN);
 
   //! Computes a point <theP> inside the face <theF>. <br>
-  //!          <theP2D> -  2D  representation of <theP> <br>
+  //!          <theP2D> - 2D representation of <theP> <br>
   //!          on the surface of <theF> <br>
   //!          Returns 0 in case of success. <br>
   Standard_EXPORT
index bf056947dc9cff9bf4147d74ec5861444a8abc29..b70a8d42fd3cf661fd9fe55ffa5ceade26df619e 100644 (file)
@@ -10437,7 +10437,7 @@ class geomBuilder(object, GEOM._objref_GEOM_Gen):
             Parameters:
                 theInit Shape to remove material from. It must be a solid or a compound made of a single solid.
                 theBase Closed edge or wire defining the base shape to be extruded.
-                theH Prism dimension along the normal  to theBase
+                theH Prism dimension along the normal to theBase
                 theAngle Draft angle in degrees.
                 theInvert If true material changes the direction.
                 theName Object name; when specified, this parameter is used
@@ -10477,7 +10477,7 @@ class geomBuilder(object, GEOM._objref_GEOM_Gen):
             Parameters:
                 theInit Shape to add material to. It must be a solid or a compound made of a single solid.
                 theBase Closed edge or wire defining the base shape to be extruded.
-                theH Prism dimension along the normal  to theBase
+                theH Prism dimension along the normal to theBase
                 theAngle Draft angle in degrees.
                 theInvert If true material changes the direction.
                 theName Object name; when specified, this parameter is used
@@ -11817,7 +11817,7 @@ class geomBuilder(object, GEOM._objref_GEOM_Gen):
         ## @{
 
         ## Create a quadrangle face from four edges. Order of Edges is not
-        #  important. It is  not necessary that edges share the same vertex.
+        #  important. It is not necessary that edges share the same vertex.
         #  @param E1,E2,E3,E4 Edges for the face bound.
         #  @param theName Object name; when specified, this parameter is used
         #         for result publication in the study. Otherwise, if automatic
@@ -11830,7 +11830,7 @@ class geomBuilder(object, GEOM._objref_GEOM_Gen):
         def MakeQuad(self, E1, E2, E3, E4, theName=None):
             """
             Create a quadrangle face from four edges. Order of Edges is not
-            important. It is  not necessary that edges share the same vertex.
+            important. It is not necessary that edges share the same vertex.
 
             Parameters:
                 E1,E2,E3,E4 Edges for the face bound.
@@ -11935,7 +11935,7 @@ class geomBuilder(object, GEOM._objref_GEOM_Gen):
             return anObj
 
         ## Create a hexahedral solid, bounded by the six given faces. Order of
-        #  faces is not important. It is  not necessary that Faces share the same edge.
+        #  faces is not important. It is not necessary that Faces share the same edge.
         #  @param F1,F2,F3,F4,F5,F6 Faces for the hexahedral solid.
         #  @param theName Object name; when specified, this parameter is used
         #         for result publication in the study. Otherwise, if automatic
@@ -11949,7 +11949,7 @@ class geomBuilder(object, GEOM._objref_GEOM_Gen):
         def MakeHexa(self, F1, F2, F3, F4, F5, F6, theName=None):
             """
             Create a hexahedral solid, bounded by the six given faces. Order of
-            faces is not important. It is  not necessary that Faces share the same edge.
+            faces is not important. It is not necessary that Faces share the same edge.
 
             Parameters:
                 F1,F2,F3,F4,F5,F6 Faces for the hexahedral solid.
index 55a48232e811615cb466d1a5d936d4b237dd3307..9bc0affe210d18843f44db6612191691dfc0ae48 100644 (file)
      <item row="3" column="0">
       <widget class="QLabel" name="label_3">
        <property name="text">
-        <string>Big pipe  height</string>
+        <string>Big pipe height</string>
        </property>
       </widget>
      </item>
      <item row="2" column="0">
       <widget class="QLabel" name="label_2">
        <property name="text">
-        <string>Small pipe  radius</string>
+        <string>Small pipe radius</string>
        </property>
       </widget>
      </item>
      <item row="4" column="0">
       <widget class="QLabel" name="label_4">
        <property name="text">
-        <string>Small  pipe height</string>
+        <string>Small pipe height</string>
        </property>
       </widget>
      </item>