Adds a fillet curve between two curve objects.
rhinoscriptsyntax.AddFilletCurve ( curve0id, curve1id , radius=1.0, base_point0=None, base_point1=None)
rhinoscript.curve.AddFilletCurve ( curve0id, curve1id , radius=1.0, base_point0=None, base_point1=None)
curve0id |
Required. The identifier of the first curve object. |
curve1id |
Required. The identifier of the second curve object. |
radius |
Optional. Number. The fillet radius. If omitted, a radius of 1.0 is specified. |
base_point0 |
Optional. The base point on the first curve. If omitted, the starting point of the curve is used. |
base_point1 |
Optional. The base point on the second curve. If omitted, the starting point of the curve is used. |
Guid |
The identifier of the new object if successful. |
None |
If not successful, or on error. |
import rhinoscriptsyntax as rs
curve0 = rs.AddLine([0,0,0], [5,1,0])
curve1 = rs.AddLine([0,0,0], [1,5,0])
rs.AddFilletCurve( curve0, curve1 )