CADability dotNET
Splits the curve at the given position. The position must be in the interval 0..1 and the curve must not be closed. For closed curves Split(Double, Double).

Namespace: CADability.GeoObject
Assembly: CADability (in CADability.dll) Version: 1.1.4254.24737 (1.1.*)

Syntax

C#
ICurve[] Split(
	double Position
)
Visual Basic
Function Split ( _
	Position As Double _
) As ICurve()
Visual C++
array<ICurve^>^ Split(
	double Position
)

Parameters

Position
Type: System..::..Double
Where to split

Return Value

the splitted curve(s)

See Also