You are here: Start » AVL.NET » AVL.PointsOnLineProjection Method

AVL.PointsOnLineProjection Method

Projects points onto a line.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

public static void PointsOnLineProjection(
	AvlNet.Point2D[] inPoints,
	AvlNet.Line2D inLine,
	out AvlNet.Point2D[] outProjectionPoints,
	out AvlNet.Segment2D? outProjectionSegment
)

Parameters

Name Type Range Default Description
inPointsAvlNet.Point2D
inLineAvlNet.Line2D
outProjectionPointsAvlNet.Point2D
outProjectionSegmentAvlNet.Segment2D?

Description

The orientation of the resulting outProjectionSegment is always between 0 and 180 degrees.

Examples

PointsOnLineProjection performed on points and line.

Errors

Error type Description
DomainError Indefinite line on input in PointsOnLineProjection.

See also