CADability dotNET
Returnes a new curve of the same type which is the fusion of this curve with the provided curve, e.g. two overlapping lines build a longer line. Returnes null if the fusion is not possible (e.g. a line and an arc or two lines with different direction)

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

Syntax

C#
ICurve2D GetFused(
	ICurve2D toFuseWith,
	double precision
)
Visual Basic
Function GetFused ( _
	toFuseWith As ICurve2D, _
	precision As Double _
) As ICurve2D
Visual C++
ICurve2D^ GetFused(
	ICurve2D^ toFuseWith, 
	double precision
)

Parameters

toFuseWith
Type: CADability.Curve2D..::..ICurve2D
Curve to fuse with
precision
Type: System..::..Double
the fused curve or null

Return Value

See Also