0022227: [CEA 827] Building a surface from a cloud of points

Restore def MakeSmoothingSurface() removed by mistake
This commit is contained in:
eap 2013-07-03 10:55:18 +00:00
parent 9ee55016e9
commit 0842c2560a

View File

@ -12231,6 +12231,16 @@ class geomBuilder(object, GEOM._objref_GEOM_Gen):
self._autoPublish(anObj, theName, "dividedCylinder")
return anObj
## Create a surface from a cloud of points
# @param thelPoints list of points
# @return New GEOM_Object, containing the created shape.
#
# @ref tui_creation_smoothingsurface "Example"
def MakeSmoothingSurface(self, thelPoints):
anObj = self.AdvOp.MakeSmoothingSurface(thelPoints)
RaiseIfFailed("MakeSmoothingSurface", self.AdvOp)
return anObj
#@@ insert new functions before this line @@ do not remove this line @@#
# end of l4_advanced