CompositeCurve.IntersectionCircleCircle3D Method

Finds the intersection between two Arc/Circle entities.
Public Shared Function IntersectionCircleCircle3D( _ 
ByVal arc1 As Circle, _ 
ByVal arc2 As Circle, _ 
ByRef i0 As Point3D, _ 
ByRef i1 As Point3D
) As Boolean
This language is not supported or no code example is available.
public static bool IntersectionCircleCircle3D( 
Circle arc1
Circle arc2
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

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