CompositeCurve.IntersectionCircleCircle Method

Finds the intersection between two Arc/Circle entities.
Public Shared Function IntersectionCircleCircle( _ 
ByVal arc1 As Circle, _ 
ByVal arc2 As Circle, _ 
ByVal pln As Plane, _ 
ByRef i0 As Point3D, _ 
ByRef i1 As Point3D
) As Boolean
This language is not supported or no code example is available.
public static bool IntersectionCircleCircle( 
Circle arc1
Circle arc2
Plane pln
out Point3D i0
out Point3D i1 
)
This language is not supported or no code example is available.

Parameters

arc1
Circle

The first arc/circle entity

arc2
Circle

The second arc/circle entity

pln
Plane

The plane where the two entities lay

i0
Point3D

The first intersection point (when it exists)

i1
Point3D

The second intersection point (when it exists)

Return Value

bool

True if the intersection is found, false when the two entities don't touch.

.NET Framework

Supported in: 4.5, 4.6, 4.7

In this article

Definition