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
ornumpy.ndarray
The points of the point cloud.
- normalslist of
compas.geometry.Vector
ornumpy.ndarray
The normals of the point cloud.
- pointslist of
- Returns:
- tuple of
numpy.ndarray
The vertices and faces of the reconstructed surface.
- tuple of