/*! \page create_smoothingsurface_page Smoothing Surface To create a Smoothing Surface in the Main Menu select New Entity - > Advanced - > SmoothingSurface \image html smoothingsurface_dlg.png In this dialog you can specify the following parameters: - \b Name of the surface; - the list of \b Points or compounds of points, from which it is approximated; - Max nbr of Bezier pieces in the resulting surface; - Max BSpline surface degree of the resulting BSpline surface; - Max plate criterion value, which is computed as max(0.0001,10*error), where error is a 3D tolerance of the surface. Press "Apply" or "Apply & Close" button to get the resulting GEOM_Object(Surface). TUI Command: geompy.MakeSmoothingSurface(thelPoints, theNbMax, theDegMax, theDMax), where: - \em thelPoints is a list of points or compounds of points; - \em theNbMax maximum number of Bezier pieces in the resulting surface; - \em theDegMax maximum degree; - \em theDMax specifies maximum value of GeomPlate_PlateG0Criterion . Example: \image html smoothingsurface.png Our TUI Scripts provide you with useful examples of creation of \ref tui_creation_smoothingsurface "Advanced objects". */