PlaneFitPlaneToPoints Method (IEnumerablePoint3d, Plane, Double) |
Fit a plane through a collection of points.
Namespace:
Rhino.Geometry
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 5.0
Syntax public static PlaneFitResult FitPlaneToPoints(
IEnumerable<Point3d> points,
out Plane plane,
out double maximumDeviation
)
Public Shared Function FitPlaneToPoints (
points As IEnumerable(Of Point3d),
<OutAttribute> ByRef plane As Plane,
<OutAttribute> ByRef maximumDeviation As Double
) As PlaneFitResult
Parameters
- points
- Type: System.Collections.GenericIEnumerablePoint3d
Points to fit to. - plane
- Type: Rhino.GeometryPlane
Resulting plane. - maximumDeviation
- Type: SystemDouble
The distance from the furthest point to the plane.
Return Value
Type:
PlaneFitResultA value indicating the result of the operation.
See Also