find_point_around#

Modeler3D.find_point_around(assignment: str, origin: list, offset: float, plane: str) list#

Find the point around an object.

Parameters:
assignmentstr

Name of the object.

originlist

List of the [x, y, z] coordinates for the starting position of the object.

offset

Offset to apply.

planestr

Coordinate plane of the arc. Choices are "YZ", "ZX", and "XY".

Returns:
list

List of the [x, y, z] coordinates for the point.

Examples

>>> from ansys.aedt.core.modeler.cad.primitives import GeometryModeler
>>> obj = GeometryModeler()
>>> obj.find_point_around(assignment="Box1", origin=[0, 0, 0], offset="1mm", plane="XY")