Click or drag to resize

MathHelperFindArcArcIntersections Method

Calculates the intersection points of two arcs.

Namespace:  DXFReaderNET
Assembly:  DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax
public static int FindArcArcIntersections(
	Arc Arc0,
	Arc Arc1,
	out Vector2 Intersection1,
	out Vector2 Intersection2
)

Parameters

Arc0
Type: DXFReaderNET.EntitiesArc
First arc.
Arc1
Type: DXFReaderNET.EntitiesArc
Second arc.
Intersection1
Type: DXFReaderNETVector2
First intersection point.
Intersection2
Type: DXFReaderNETVector2
Second intersection point.

Return Value

Type: Int32
0 if there are no intersection, 1 if there are only one intersection, 2 if there are two intersections.
See Also