Extends a curve by a line until it intersects a collection of objects.
Namespace:
Rhino.Geometry
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 5.0
Syntax public Curve ExtendByLine(
CurveEnd side,
IEnumerable<GeometryBase> geometry
)
Public Function ExtendByLine (
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