Part: update GeomSurface.toBSpline doc

This commit is contained in:
tomate44
2020-12-07 08:49:16 +01:00
committed by wwmayer
parent e7c06e8483
commit 75a2f471ea
2 changed files with 13 additions and 10 deletions

View File

@@ -176,14 +176,15 @@ of the nearest orthogonal projection of the point.</UserDocu>
<Documentation>
<UserDocu>
Returns a B-Spline representation of this surface.
The required arguments are:
* tolerance
* continuity in u (as string e.g. C0, G0, G1, C1, G2, C3, CN)
* continuity in v (as string e.g. C0, G0, G1, C1, G2, C3, CN)
* maximum degree in u
* maximum degree in v
* maximum number of segments
* precision code (optional, default=0)
The optional arguments are:
* tolerance (default=1e-7)
* continuity in u (as string e.g. C0, G0, G1, C1, G2, C3, CN) (default='C1')
* continuity in v (as string e.g. C0, G0, G1, C1, G2, C3, CN) (default='C1')
* maximum degree in u (default=25)
* maximum degree in v (default=25)
* maximum number of segments (default=1000)
* precision code (default=0)
Will raise an exception if surface is infinite in U or V (like planes, cones or cylinders)
</UserDocu>
</Documentation>
</Methode>