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
)
Public Shared Function FindArcArcIntersections (
Arc0 As Arc,
Arc1 As Arc,
<OutAttribute> ByRef Intersection1 As Vector2,
<OutAttribute> ByRef Intersection2 As Vector2
) As Integer
public:
static int FindArcArcIntersections(
Arc^ Arc0,
Arc^ Arc1,
[OutAttribute] Vector2% Intersection1,
[OutAttribute] Vector2% Intersection2
)
static member FindArcArcIntersections :
Arc0 : Arc *
Arc1 : Arc *
Intersection1 : Vector2 byref *
Intersection2 : Vector2 byref -> int
STATIC METHOD FindArcArcIntersections(
Arc0 AS Arc,
Arc1 AS Arc,
Intersection1 OUT Vector2,
Intersection2 OUT Vector2
) AS LONG
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:
Int320 if there are no intersection, 1 if there are only one intersection, 2 if there are two intersections.
See Also