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.
- point[float, float, float] |
- Returns:
compas.geometry.Point
The mirrored point.
Examples
>>> plane = Plane.worldXY() >>> point = plane.mirrored_point([1.0, 1.0, 1.0]) >>> print(point) Point(x=1.000, y=1.000, z=-1.000)