Projection.from_plane

classmethod Projection.from_plane(plane)[source]

Construct an orthogonal projection transformation to project onto a plane.

Parameters:
plane[point, normal] | compas.geometry.Plane

The plane to project onto.

Returns:
compas.geometry.Projection

An orthogonal projection transformation.

Examples

>>> from compas.geometry import Plane
>>> point = [0, 0, 0]
>>> normal = [0, 0, 1]
>>> plane = Plane(point, normal)
>>> P = Projection.from_plane(plane)