intersect#

Object3d.intersect(assignment: list[str] | list[Object3d], keep_originals: bool = False) Object3d#

Intersect the active object with a given list.

Parameters:
assignmentlist

List of objects.

keep_originalsbool, optional

Whether to keep the original object. The default is False.

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

Retrieve the resulting 3D Object when succeeded.

References

>>> oEditor.Intersect

Examples

>>> from ansys.aedt.core.modeler.cad.object_3d import Object3d
>>> obj = Object3d()
>>> obj.intersect(assignment="Box1")