delaunay_from_points_numpy

compas.geometry.delaunay_from_points_numpy(points)[source]

Computes the delaunay triangulation for a list of points using Numpy.

Parameters

points (sequence[[float, float, float] | Point]) – XYZ coordinates of the original points.

Returns

list[[int, int, int]] – The faces of the triangulation. Each face is a triplet of indices referring to the list of point coordinates.

Examples

>>>