poisson_surface_reconstruction

compas_cgal.reconstruction.poisson_surface_reconstruction(points, normals)

Reconstruct a surface from a point cloud using the Poisson surface reconstruction algorithm.

Parameters:
pointslist of compas.geometry.Point or numpy.ndarray

The points of the point cloud.

normalslist of compas.geometry.Vector or numpy.ndarray

The normals of the point cloud.

Returns:
tuple of numpy.ndarray

The vertices and faces of the reconstructed surface.