CADability dotNET
Returns two curves (Path), that represent the given curve, splitted at the vertex which is closest to the mouse position. The endpoint of the first curve is the startpoint of the second curve. If the curve is not closed and the startpoint or endpoint is closest to the mouse position, en empty array will be returned.

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

Syntax

C#
public ICurve[] SplitAtMousePosition(
	ICurve composedCurve
)
Visual Basic
Public Function SplitAtMousePosition ( _
	composedCurve As ICurve _
) As ICurve()
Visual C++
public:
array<ICurve^>^ SplitAtMousePosition(
	ICurve^ composedCurve
)

Parameters

composedCurve
Type: CADability.GeoObject..::..ICurve

Return Value

See Also