Click or drag to resize

CircleTryFitCircleToPoints Method

Attempt to fit a circle through a set of points.

Namespace:  Rhino.Geometry
Assembly:  RhinoCommon (in RhinoCommon.dll)
Since: 6.2
Syntax
public static bool TryFitCircleToPoints(
	IEnumerable<Point3d> points,
	out Circle circle
)

Parameters

points
Type: System.Collections.GenericIEnumerablePoint3d
The points through which to fit.
circle
Type: Rhino.GeometryCircle
The resulting circle on success.

Return Value

Type: Boolean
true on success, false on failure.
See Also