move#

Polyline.move(vector: list[float] | object) Object3d | bool#

Move objects from a list.

Parameters:
vectorlist

Vector of the direction move. It can be a list of the [x, y, z] coordinates or a Position object.

Returns:
ansys.aedt.core.modeler.cad.object_3d.Object3d

3D object. False when failed.

References

>>> oEditor.Move

Examples

>>> from ansys.aedt.core.modeler.cad.object_3d import Object3d
>>> obj = Object3d()
>>> obj.move(vector=[1, 0, 0])