Plane.mirrored_point

Plane.mirrored_point(point)[source]

Returns the mirror image of a given point.

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

The point.

Returns:
compas.geometry.Point

The mirrored point.

Examples

>>> plane = Plane.worldXY()
>>> plane.mirrored_point([1.0, 1.0, 1.0])
Point(1.000, 1.000, -1.000)