mirror_point#

static GeometryOperators.mirror_point(start: list, reference: list, vector: list) list#

Mirror point about a plane defining by a point on the plane and a normal point.

Parameters:
startlist

Point to be mirrored

referencelist

The reference point. Point on the plane around which you want to mirror the object.

vectorlist

Normalized vector used for the mirroring.

Returns:
List

List of the reflected point.

Examples

>>> from ansys.aedt.core.modeler.geometry_operators import GeometryOperators
>>> obj = GeometryOperators()
>>> obj.mirror_point(start=[0, 0, 0], reference=["Box1"], vector=[1, 0, 0])