project_points_plane

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

Project multiple points onto a plane.

Parameters
  • points (sequence[[float, float, float] | Point]) – List of points.

  • plane ([point, vector] | Plane) – Base point and normal vector defining the projection plane.

Returns

list[[float, float, float]] – The projected points.