new_padstack#
- Modeler3DLayout.new_padstack(name: str = 'Padstack') Padstack | None#
Create a Padstack object that can be used to create a padstack.
- Parameters:
- name
str,optional Name of the padstack. The default is
"Padstack".
- name
- Returns:
ansys.aedt.core.modeler.cad.object_3dlayout.PadstackPadstack object if a padstack with this name does not already exist.
Examples
>>> from ansys.aedt.core.modeler.pcb.primitives_3d_layout import Primitives3DLayout >>> obj = Primitives3DLayout() >>> obj.new_padstack(name="MyObject")