CADability dotNET
Calculates lines that are tangential to both the first and the second curve. Returns an array of 2D points, where each pair of points represent a line. The number of points is always even. Implemented for circles or arcs only.

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

Syntax

C#
public static GeoPoint2D[] TangentLines(
	ICurve2D first,
	ICurve2D second
)
Visual Basic
Public Shared Function TangentLines ( _
	first As ICurve2D, _
	second As ICurve2D _
) As GeoPoint2D()
Visual C++
public:
static array<GeoPoint2D>^ TangentLines(
	ICurve2D^ first, 
	ICurve2D^ second
)

Return Value

See Also