File tree Expand file tree Collapse file tree 1 file changed +10
-10
lines changed
src/ansys/edb/core/primitive Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -48,16 +48,16 @@ def create(
48
48
bondwire_type : BondwireType ,
49
49
definition_name : str ,
50
50
placement_layer : str ,
51
- width : Value ,
51
+ width : ValueLike ,
52
52
material : str ,
53
53
start_context : CellInstance ,
54
54
start_layer_name : str ,
55
- start_x : Value ,
56
- start_y : Value ,
55
+ start_x : ValueLike ,
56
+ start_y : ValueLike ,
57
57
end_context : CellInstance ,
58
58
end_layer_name : str ,
59
- end_x : Value ,
60
- end_y : Value ,
59
+ end_x : ValueLike ,
60
+ end_y : ValueLike ,
61
61
net : NetLike | None ,
62
62
) -> Bondwire :
63
63
"""Create a bondwire.
@@ -72,25 +72,25 @@ def create(
72
72
Bondwire definition name.
73
73
placement_layer : str
74
74
Layer name to create the bondwire on.
75
- width : .Value
75
+ width : :term:`ValueLike`
76
76
Bondwire width.
77
77
material : str
78
78
Bondwire material name.
79
79
start_context : .CellInstance
80
80
Start context :obj:`None` means top-level,.
81
81
start_layer_name : str
82
82
Name of the start layer.
83
- start_x : .Value
83
+ start_x : :term:`ValueLike`
84
84
X value of the start point.
85
- start_y : .Value
85
+ start_y : :term:`ValueLike`
86
86
Y value of the start point.
87
87
end_context : .CellInstance
88
88
End content :obj:`None` means top-level.
89
89
end_layer_name : str
90
90
Name of the end layer.
91
- end_x : .Value
91
+ end_x : :term:`ValueLike`
92
92
X value of the end point.
93
- end_y : .Value
93
+ end_y : :term:`ValueLike`
94
94
Y value of the end point.
95
95
net : :term:`NetLike` or None
96
96
Net of the bondwire.
You can’t perform that action at this time.
0 commit comments