You are here: Start » AVL.NET » Function Reference » Geometry 2D » Geometry 2D Constructions » AVL.ProjectPointsOnLine

AVL.ProjectPointsOnLine

Projects points onto a line.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void ProjectPointsOnLine
(
	IList<AvlNet.Point2D> inPoints,
	AvlNet.Line2D inLine,
	IList<AvlNet.Point2D> outProjectionPoints,
	out AvlNet.Segment2D? outProjectionSegment
)

Parameters

Name Type Range Default Description
inPointsSystem.Collections.Generic.IList<AvlNet.Point2D>
inLineAvlNet.Line2D
outProjectionPointsSystem.Collections.Generic.IList<AvlNet.Point2D>
outProjectionSegmentAvlNet.Segment2D?

Description

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

Examples

ProjectPointsOnLine performed on points and line.

Errors

List of possible exceptions:

Error type Description
DomainError Indefinite line on input in ProjectPointsOnLine.

Function Overrides

See also