Click or drag to resize

MathHelperFindCircleCircleIntersections Method

Calculates the intersection points of two circles.

Namespace:  DXFReaderNET
Assembly:  DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax
public static int FindCircleCircleIntersections(
	Circle circle0,
	Circle circle1,
	out Vector2 intersection1,
	out Vector2 intersection2
)

Parameters

circle0
Type: DXFReaderNET.EntitiesCircle
First circle.
circle1
Type: DXFReaderNET.EntitiesCircle
Second circle.
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