You are here: Start » AVL.NET » 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 | |
|---|---|---|---|---|---|
![]()  | inPoints | System.Collections.Generic.List<Avl.Point2D> | |||
![]()  | inRange | Atl.Optional<Avl.Range> | Determines which array points take part in fitting process. Default value: atl::NIL. | ||
![]()  | inFittingMethod | Avl.CircleFittingMethod | |||
![]()  | inOutlierSuppression | Atl.Optional<Avl.MEstimator> | |||
![]()  | outArc | Atl.Conditional<Avl.Arc2D> | Fitted arc or nothing if the computations failed to converge. | ||
![]()  | outInliers | Atl.Optional<System.Collections.Generic.List<Avl.Point2D>> | Points matching the fitting arc. | 


