2013-06-10 14:28:09 +06:00
|
|
|
/*!
|
|
|
|
|
2013-12-18 20:23:59 +06:00
|
|
|
\page create_smoothingsurface_page Smoothing Surface
|
2013-06-10 14:28:09 +06:00
|
|
|
|
2013-12-18 20:23:59 +06:00
|
|
|
To create a <b> Smoothing Surface</b> in the <b>Main Menu</b> select <b>New Entity - >
|
2013-06-10 14:28:09 +06:00
|
|
|
Advanced - > SmoothingSurface </b>
|
|
|
|
|
2014-03-26 15:07:43 +06:00
|
|
|
To create a surface it is necessary to specify the \b Name of the surface, the list of \b Points
|
|
|
|
from which it is approximated and some plate approximation parameters such as: <b>Max nbr of
|
2014-04-30 12:53:36 +06:00
|
|
|
Bezier pieces</b>, <b>Max BSpline surface degree</b> and <b>3D tolerance of initial approximation</b>.
|
2014-03-26 15:07:43 +06:00
|
|
|
And then press "Apply" or "Apply & Close" button.
|
2013-06-10 14:28:09 +06:00
|
|
|
|
2014-03-24 15:13:11 +06:00
|
|
|
\note The dialog accepts compounds of points as well as single nodes.
|
|
|
|
|
2013-12-18 20:23:59 +06:00
|
|
|
The result of the operation will be a GEOM_Object(Surface).
|
2013-06-10 14:28:09 +06:00
|
|
|
|
2014-03-26 15:07:43 +06:00
|
|
|
<b>TUI Command:</b> <em>geompy.MakeSmoothingSurface(thelPoints, theNbMax, theDegMax, theDMax)</em>, where:
|
|
|
|
- \em thelPoints list of points. Compounds of points are accepted as well
|
|
|
|
- \em theNbMax maximum number of Bezier pieces in the resulting surface
|
|
|
|
- \em theDegMax maximum degree of the resulting BSpline surface
|
2014-04-30 12:53:36 +06:00
|
|
|
- \em theDMax specifies 3D tolerance of initial approximation
|
|
|
|
|
|
|
|
\note <b>3D tolerance of initial approximation</b> represents a tolerance of
|
|
|
|
initial plate surface approximation. If this parameter is equal to 0 (default
|
|
|
|
value) it is computed. In this case an error of initial plate surface
|
|
|
|
computation is used as the approximation tolerance. This error represents a
|
|
|
|
maximal distance between computed plate surface and given points.
|
2013-06-10 14:28:09 +06:00
|
|
|
|
|
|
|
\image html smoothingsurface_dlg.png
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
\image html smoothingsurface.png
|
|
|
|
|
|
|
|
Our <b>TUI Scripts</b> provide you with useful examples of creation of
|
|
|
|
\ref tui_creation_smoothingsurface "Advanced objects".
|
|
|
|
|
|
|
|
*/
|