move#

Modeler3D.move(assignment: list, vector: list) bool#

Move objects from a list.

Parameters:
assignmentlist, Position object

List of object IDs.

vectorlist

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

Returns:
bool

True when successful, False when failed.

References

>>> oEditor.Move

Examples

>>> from ansys.aedt.core.modeler.cad.primitives import GeometryModeler
>>> obj = GeometryModeler()
>>> obj.move(assignment="Box1", vector=[1, 0, 0])