IntersectionArcArc Method |
Intersects two arcs using exact calculations.
Namespace:
Rhino.Geometry.Intersect
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 7.12
Syntax public static ArcArcIntersection ArcArc(
Arc arcA,
Arc arcB,
out Point3d intersectionPoint1,
out Point3d intersectionPoint2
)
Public Shared Function ArcArc (
arcA As Arc,
arcB As Arc,
<OutAttribute> ByRef intersectionPoint1 As Point3d,
<OutAttribute> ByRef intersectionPoint2 As Point3d
) As ArcArcIntersection
Parameters
- arcA
- Type: Rhino.GeometryArc
First arc to intersect. - arcB
- Type: Rhino.GeometryArc
Second arc to intersect. - intersectionPoint1
- Type: Rhino.GeometryPoint3d
First intersection point. - intersectionPoint2
- Type: Rhino.GeometryPoint3d
Second intersection point.
Return Value
Type:
ArcArcIntersectionThe intersection type.
See Also