You are here: Start » AVL.NET » Function Reference » Geometry 2D » Geometry 2D Intersections » AVL.SegmentArcIntersection

AVL.SegmentArcIntersection

Computes the common points of an arc and a segment.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void SegmentArcIntersection
(
	AvlNet.Segment2D inSegment,
	AvlNet.Arc2D inArc,
	out AvlNet.Point2D? outIntersectionPoint1,
	out AvlNet.Point2D? outIntersectionPoint2
)

Parameters

Name Type Range Default Description
inSegmentAvlNet.Segment2D
inArcAvlNet.Arc2D
outIntersectionPoint1AvlNet.Point2D?
outIntersectionPoint2AvlNet.Point2D?

Examples

SegmentArcIntersection performed on segment and arc.

See also