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
)
Public Shared Function ArePointsCoplanar (
points As IEnumerable(Of Point3d),
tolerance As Double
) As Boolean
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:
Booleantrue if points are on the same plane; false otherwise.
See Also