From 0842c2560a720e22576179a4e5e9d8aaae39595b Mon Sep 17 00:00:00 2001 From: eap Date: Wed, 3 Jul 2013 10:55:18 +0000 Subject: [PATCH] 0022227: [CEA 827] Building a surface from a cloud of points Restore def MakeSmoothingSurface() removed by mistake --- src/GEOM_SWIG/geomBuilder.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/GEOM_SWIG/geomBuilder.py b/src/GEOM_SWIG/geomBuilder.py index 1b63d3904..e273bd527 100644 --- a/src/GEOM_SWIG/geomBuilder.py +++ b/src/GEOM_SWIG/geomBuilder.py @@ -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 -- 2.39.2