Extends a curve by an Arc until it intersects a collection of objects.
Namespace:
Rhino.Geometry
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 5.0
Syntax public Curve ExtendByArc(
CurveEnd side,
IEnumerable<GeometryBase> geometry
)
Public Function ExtendByArc (
side As CurveEnd,
geometry As IEnumerable(Of GeometryBase)
) As Curve
Parameters
- side
- Type: Rhino.GeometryCurveEnd
The end of the curve to extend. - geometry
- Type: System.Collections.GenericIEnumerableGeometryBase
A collection of objects. Allowable object types are Curve, Surface, Brep.
Return Value
Type:
CurveNew extended curve result on success, null on failure.
See Also