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

AVL.SegmentSegmentIntersection

Computes a common point of two segments.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void SegmentSegmentIntersection
(
	AvlNet.Segment2D inSegment1,
	AvlNet.Segment2D inSegment2,
	out AvlNet.Point2D? outIntersectionPoint
)

Parameters

Name Type Range Default Description
inSegment1AvlNet.Segment2D
inSegment2AvlNet.Segment2D
outIntersectionPointAvlNet.Point2D?

Examples

SegmentSegmentIntersection performed on two segments.

See also