Click or drag to resize

Point3dCullDuplicates Method

Removes duplicates in the supplied set of points.

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

Parameters

points
Type: System.Collections.GenericIEnumerablePoint3d
A list, an array or any enumerable of Point3d.
tolerance
Type: SystemDouble
The minimum distance between points.

Points that fall within this tolerance will be discarded.

.

Return Value

Type: Point3d
An array of points without duplicates; or null on error.
See Also