Utility.FitCircle (IList<Point2D>, Plane, out Point2D, out Double) Method

Least squares circle fit given a set of 2D points.
Public Shared Sub FitCircle( _ 
ByVal pts2D As IList(Of Point2D), _ 
ByVal plane As Plane, _ 
ByRef center As Point2D, _ 
ByRef radius As Double
)
This language is not supported or no code example is available.
public static void FitCircle( 
IList<Point2D> pts2D
Plane plane
out Point2D center
out double radius 
)
This language is not supported or no code example is available.

Parameters

pts2D
IList<Point2D>

List of 2D points to be fitted

plane
Plane

Plane of the 2D points

center
Point2D

The center of the circle

radius
double

The radius of the circle

.NET Framework

Supported in: 4.8

In this article

Definition