You are here: Start » FIL.NET » FIS.FitCircleToPoints Method

FIS.FitCircleToPoints Method

Approximates points with a circle using selected outliers suppression method.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

public static void FitCircleToPoints
(
	IList<FilNet.Point2D> inPoints,
	FilNet.Range? inRange,
	FilNet.CircleFittingMethod inFittingMethod,
	FilNet.MEstimator? inOutlierSuppression,
	out FilNet.Circle2D? outCircle,
	NullableRef<List<FilNet.Point2D>> outInliers
)

Parameters

Name Type Range Default Description
inPointsSystem.Collections.Generic.IList<FilNet.Point2D>
inRangeFilNet.Range?Determines which array points take part in fitting process. Default value: ftl::NIL.
inFittingMethodFilNet.CircleFittingMethod
inOutlierSuppressionFilNet.MEstimator?
outCircleFilNet.Circle2D?Fitted circle or nothing if method failed to converge.
outInliersFilNet.NullableRef<System.Collections.Generic.List<FilNet.Point2D>>Points matching the computed circle. Can be null to skip this parameter calculation.

Function Overrides

See also