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

FIL.SegmentArcIntersection

Computes the common points of an arc and a segment.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

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

Parameters

Name Type Range Default Description
inSegmentFilNet.Segment2D
inArcFilNet.Arc2D
outIntersectionPoint1FilNet.Point2D?
outIntersectionPoint2FilNet.Point2D?

Examples

SegmentArcIntersection performed on segment and arc.

See also