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

Invoke.FitArcToPoints

Approximates points with an arc using the selected outliers suppression method.

Namespace:Avl
Assembly:AvlNet.dll

Syntax

C++
C#
 
public static void FitArcToPoints
(
	List<Avl.Point2D> inPoints,
	Optional<Avl.Range> inRange,
	Avl.CircleFittingMethod inFittingMethod,
	Optional<Avl.MEstimator> inOutlierSuppression,
	Conditional<Avl.Arc2D> outArc,
	Optional<List<Avl.Point2D>> outInliers
)

Parameters

Name Type Range Default Description
inPointsSystem.Collections.Generic.List<Avl.Point2D>
inRangeAtl.Optional<Avl.Range>Determines which array points take part in fitting process. Default value: atl::NIL.
inFittingMethodAvl.CircleFittingMethod
inOutlierSuppressionAtl.Optional<Avl.MEstimator>
outArcAtl.Conditional<Avl.Arc2D>Fitted arc or nothing if the computations failed to converge.
outInliersAtl.Optional<System.Collections.Generic.List<Avl.Point2D>>Points matching the fitting arc.

See also