project_points_plane

compas.geometry.project_points_plane(points, plane)[source]

Project multiple points onto a plane.

Parameters:
pointssequence[[float, float, float] | compas.geometry.Point]

List of points.

plane[point, vector] | compas.geometry.Plane

Base point and normal vector defining the projection plane.

Returns:
list[[float, float, float]]

The projected points.