geometry_check_and_fix_all#

Modeler3DLayout.geometry_check_and_fix_all(min_area: float = 2e-06) bool#

Run Geometry Check.

All checks are used and all auto fix options are enabled.

min_areafloat, optional

CutOuts that are smaller than this minimum area will be ignored during validation checks. The default is 2e-6.

Returns:
bool

True when successful, False when failed.

Examples

>>> from ansys.aedt.core.modeler.modeler_pcb import Modeler3DLayout
>>> obj = Modeler3DLayout()
>>> obj.geometry_check_and_fix_all(min_area=1.0)