Hi @Dale, somehow related to the above question, as i think a fillet arc of radius 0 will not return something to trim back, is there an equivalent scripting method for Rhino’s “_Connect” command which could be used instead ?
Dim ReturnedArc As Rhino.Geometry.Arc = Rhino.Geometry.Curve.CreateFillet(New DocObjects.ObjRef(BalCurveLastL).Curve, New DocObjects.ObjRef(BalCurveSoleL).Curve, 0.0F, 0.0F, 0.0F)
Dim TransformedArc As New Rhino.Geometry.ArcCurve(ReturnedArc)
MsgBox(TransformedArc.PointAtStart.ToString)
I was in a bit of a hurry when I replied. I should have added that there is a function in the SDK that adds a tangent arc between two curves and trims or extends the curves to the arc. This is used by RhinoScript’s FilletCurves method. It just isn’t exposed on RhinoCommon yet. It’s on the to-do list.