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

FIL.SegmentCircleIntersection

Computes the common points of a circle and a segment.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

C++
C#
 
public static void SegmentCircleIntersection
(
	FilNet.Segment2D inSegment,
	FilNet.Circle2D inCircle,
	out FilNet.Point2D? outIntersectionPoint1,
	out FilNet.Point2D? outIntersectionPoint2
)

Parameters

Name Type Range Default Description
inSegmentFilNet.Segment2D
inCircleFilNet.Circle2D
outIntersectionPoint1FilNet.Point2D?
outIntersectionPoint2FilNet.Point2D?

Examples

SegmentCircleIntersection performed on segment and circle.

See also