You are here: Start » AVL.NET » Invoke.ProjectPointsOnCircle

Invoke.ProjectPointsOnCircle

Projects points onto a circle.

Namespace:Avl
Assembly:AvlNet.dll

Syntax

C++
C#
 
public static void ProjectPointsOnCircle
(
	List<Avl.Point2D> inPoints,
	Avl.Circle2D inCircle,
	List<Avl.Point2D> outProjectionPoints,
	Conditional<Avl.Arc2D> outProjectionArc
)

Parameters

Name Type Range Default Description
inPointsSystem.Collections.Generic.List<Avl.Point2D>Points to be projected.
inCircleAvl.Circle2DCircle the points will be projected on.
outProjectionPointsSystem.Collections.Generic.List<Avl.Point2D>Projected points.
outProjectionArcAtl.Conditional<Avl.Arc2D>Arc containing the projected points.

See also