Plane.transform

Plane.transform(T)[source]

Transform this plane.

Parameters

T (Transformation | list[list[float]]) – The transformation.

Returns

None

Examples

>>> from compas.geometry import Frame
>>> from compas.geometry import Transformation
>>> from compas.geometry import Plane
>>> f = Frame([1, 1, 1], [0.68, 0.68, 0.27], [-0.67, 0.73, -0.15])
>>> T = Transformation.from_frame(f)
>>> plane = Plane.worldXY()
>>> plane.transform(T)