]> SALOME platform Git repositories - modules/geom.git/commitdiff
Salome HOME
0020552: EDF GEOM: method written twice
authordmv <dmv@opencascade.com>
Mon, 26 Oct 2009 14:53:40 +0000 (14:53 +0000)
committerdmv <dmv@opencascade.com>
Mon, 26 Oct 2009 14:53:40 +0000 (14:53 +0000)
src/GEOM_SWIG/geompyDC.py

index 309c667e8c16b29427fbcd982badf9af343436e9..1db9ae08cc0a2a7ad7eaf23efd8c92dc9271d74a 100644 (file)
@@ -2750,20 +2750,22 @@ class geompyDC(GEOM._objref_GEOM_Gen):
             anObj.SetParameters(Parameters)
             return anObj
            
-        ## Perform a fillet on the specified edges of the given wire shape
-        #  @param theShape - Wire Shape(with planar edges) to perform fillet on.
+        ## Perform a fillet on the specified edges of the given shape
+        #  @param theShape - Wire Shape to perform fillet on.
         #  @param theR - Fillet radius.
         #  @param theListOfVertexes Global indices of vertexes to perform fillet on.
         #    \note Global index of sub-shape can be obtained, using method geompy.GetSubShapeID().
+        #    \note The list of vertices could be empty,
+        #          in this case fillet will done done at all vertices in wire
         #  @return New GEOM_Object, containing the result shape.
         #
-        #  @ref tui_fillet1d "Example"
+        #  @ref tui_fillet2d "Example"
         def MakeFillet1D(self,theShape, theR, theListOfVertexes):
             # Example: see GEOM_TestAll.py
             anObj = self.LocalOp.MakeFillet1D(theShape, theR, theListOfVertexes)
             RaiseIfFailed("MakeFillet1D", self.LocalOp)
             return anObj
-
+           
         ## Perform a fillet on the specified edges/faces of the given shape
         #  @param theShape - Face Shape to perform fillet on.
         #  @param theR - Fillet radius.
@@ -2778,22 +2780,6 @@ class geompyDC(GEOM._objref_GEOM_Gen):
             RaiseIfFailed("MakeFillet2D", self.LocalOp)
             return anObj
 
-        ## Perform a fillet on the specified edges of the given shape
-        #  @param theShape - Wire Shape to perform fillet on.
-        #  @param theR - Fillet radius.
-        #  @param theListOfVertexes Global indices of vertexes to perform fillet on.
-        #    \note Global index of sub-shape can be obtained, using method geompy.GetSubShapeID().
-        #    \note The list of vertices could be empty,
-        #          in this case fillet will done done at all vertices in wire
-        #  @return New GEOM_Object, containing the result shape.
-        #
-        #  @ref tui_fillet2d "Example"
-        def MakeFillet1D(self,theShape, theR, theListOfVertexes):
-            # Example: see GEOM_TestAll.py
-            anObj = self.LocalOp.MakeFillet1D(theShape, theR, theListOfVertexes)
-            RaiseIfFailed("MakeFillet1D", self.LocalOp)
-            return anObj
-
         ## Perform a symmetric chamfer on all edges of the given shape.
         #  @param theShape Shape, to perform chamfer on.
         #  @param theD Chamfer size along each face.