Distance2d.ArcArc Method

Computes the closest points between two arc segments. The resulting lines startpoint will be on a1, and its endpoint on a2. 'checkZeroIntersect' should be true if it's possible the segments intersect (ie. check for zero distance) Setting it to false will speed up the computation.
Public Shared Function ArcArc( _ 
ByVal a1 As Arc2d, _ 
ByVal a2 As Arc2d, _ 
Optional ByVal checkIntersection As Boolean = true _ 
) As Double
This language is not supported or no code example is available.
public static double ArcArc( 
Arc2d a1
Arc2d a2
bool checkIntersection = true 
)
This language is not supported or no code example is available.
public:  
static double ArcArc( 
Arc2d^ a1
Arc2d^ a2
bool checkIntersection 
)
This language is not supported or no code example is available.
public static function ArcArc( 
a1 : Arc2d
a2 : Arc2d
checkIntersection : boolean 
) : double;
This language is not supported or no code example is available.

Parameters

a1
Arc2d

a2
Arc2d

checkIntersection
bool

Return Value

double

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8

In this article

Definition