Click or drag to resize

CircularArc2dExtensionGetTangentsTo Method (CircularArc2d, CircularArc2d, TangentType)

Gets the tangents between the active CircularArc2d instance complete circle and another one.

Namespace:  Gile.AutoCAD.Geometry
Assembly:  GeometryExtensions (in GeometryExtensions.dll) Version: 2.0.0.0 (2.0.0.0)
Syntax
public static LineSegment2d[] GetTangentsTo(
	this CircularArc2d arc,
	CircularArc2d other,
	TangentType flags
)

Parameters

arc
Type: CircularArc2d
The instance to which the method applies.
other
Type: CircularArc2d
The CircularArc2d to which searched for tangents.
flags
Type: Gile.AutoCAD.GeometryTangentType
An enum value specifying which type of tangent is returned.

Return Value

Type: LineSegment2d
An array of LineSegment2d representing the tangents (maybe 2 or 4) or null if there is none.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type CircularArc2d. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
Remarks
Tangents start points are on the object to which this method applies, end points on the one passed as argument. Tangents are always returned in the same order: outer tangents before inner tangents, and for both, the tangent on the left side of the line from this circular arc center to the other one before the other one.
See Also