project_points_plane
- compas.geometry.project_points_plane(points, plane)[source]
Project multiple points onto a plane.
- Parameters
points (list of point) – List of points.
plane (tuple) – Base point and normal vector defining the projection plane.
- Returns
list of point – The projected points.
See also