You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The syntax currently used to change material override is unnecessarily complicated: hfss.change_material_override(material_override=True)
It is not intuitive that the default behavior of the method change_material_override() is to set material override
to True.
It would be more intuitive and pythonic to make this a property of the application: hfss.material_override = True
Code sample expected
Add a property to the Design class.
See the method change_material_override in \aedt\core\application\design.py.
Useful links and references
No response
The text was updated successfully, but these errors were encountered:
Description of the current limitations
The syntax currently used to change material override is unnecessarily complicated:
hfss.change_material_override(material_override=True)
It is not intuitive that the default behavior of the method
change_material_override()
is to set material overrideto
True
.It would be more intuitive and pythonic to make this a property of the application:
hfss.material_override = True
Code sample expected
Add a property to the
Design
class.See the method
change_material_override
in \aedt\core\application\design.py.Useful links and references
No response
The text was updated successfully, but these errors were encountered: