You are here: Start » AVL.NET » AVS.FitCircleToPoints3D Method

AVS.FitCircleToPoints3D Method

Approximates points in 3D with a circle using selected outliers suppression method.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

public static void FitCircleToPoints3D
(
	IList<AvlNet.Point3D> inPoints,
	AvlNet.CircleFittingMethod inFittingMethod,
	AvlNet.MEstimator? inOutlierSuppression,
	AvlNet.Plane3D? inPlane,
	INullable<AvlNet.Circle3D> outCircle,
	NullableRef<List<AvlNet.Point3D>> outInliers
)

Parameters

Name Type Range Default Description
inPointsSystem.Collections.Generic.IList<AvlNet.Point3D>
inFittingMethodAvlNet.CircleFittingMethod
inOutlierSuppressionAvlNet.MEstimator?
inPlaneAvlNet.Plane3D?
outCircleAvlNet.INullable<AvlNet.Circle3D>Fitted circle or nothing if method failed to converge,. This parameter cannot be null.
outInliersAvlNet.NullableRef<System.Collections.Generic.List<AvlNet.Point3D>> Can be null to skip this parameter calculation.

Function Overrides

See also