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

Invoke.FitCircleToPoints3D

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

Namespace:Avl
Assembly:AvlNet.dll

Syntax

C++
C#
 
public static void FitCircleToPoints3D
(
	List<Avl.Point3D> inPoints,
	Avl.CircleFittingMethod inFittingMethod,
	Optional<Avl.MEstimator> inOutlierSuppression,
	Optional<Avl.Plane3D> inPlane,
	Conditional<Avl.Circle3D> outCircle,
	Optional<List<Avl.Point3D>> outInliers
)

Parameters

Name Type Range Default Description
inPointsSystem.Collections.Generic.List<Avl.Point3D>
inFittingMethodAvl.CircleFittingMethod
inOutlierSuppressionAtl.Optional<Avl.MEstimator>
inPlaneAtl.Optional<Avl.Plane3D>
outCircleAtl.Conditional<Avl.Circle3D>Fitted circle or nothing if method failed to converge,.
outInliersAtl.Optional<System.Collections.Generic.List<Avl.Point3D>>

See also