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

Invoke.FitArcToPoints

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

Namespace:Fil
Assembly:FilNet.dll

Syntax

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

Parameters

Name Type Range Default Description
inPointsSystem.Collections.Generic.List<Fil.Point2D>
inRangeFtl.Optional<Fil.Range>Determines which array points take part in fitting process. Default value: ftl::NIL.
inFittingMethodFil.CircleFittingMethod
inOutlierSuppressionFtl.Optional<Fil.MEstimator>
outArcFtl.Conditional<Fil.Arc2D>Fitted arc or nothing if the computations failed to converge.
outInliersFtl.Optional<System.Collections.Generic.List<Fil.Point2D>>Points matching the fitting arc.

See also