section#

Object3d.section(plane: int, create_new: bool = True, section_cross_object: bool = False) Object3d | bool#

Section the object.

Parameters:
planefrom ansys.aedt.core.generic.constants.Plane

Coordinate system of the plane object.

create_newbool, optional

Whether to create an object. The default is True.

section_cross_objectbool, optional

The default is False.

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

3D object.

References

>>> oEditor.Section

Examples

>>> from ansys.aedt.core.modeler.cad.object_3d import Object3d
>>> obj = Object3d()
>>> obj.section(plane="XY")