Click or drag to resize

Point3dArePointsCoplanar Method

Determines whether a set of points is coplanar within a given tolerance.

Namespace:  Rhino.Geometry
Assembly:  RhinoCommon (in RhinoCommon.dll)
Since: 5.0
Syntax
public static bool ArePointsCoplanar(
	IEnumerable<Point3d> points,
	double tolerance
)

Parameters

points
Type: System.Collections.GenericIEnumerablePoint3d
A list, an array or any enumerable of Point3d.
tolerance
Type: SystemDouble
A tolerance value. A default might be RhinoMath.ZeroTolerance.

Return Value

Type: Boolean
true if points are on the same plane; false otherwise.
See Also