Skip to content

Commit 7e2b016

Browse files
committed
FIX: layer error in via array
1 parent 13091f3 commit 7e2b016

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/edb/legacy_standalone/differential_vias.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@
5252
points = [[0.0, 0], [100e-3, 0.0]]
5353
edb.modeler.create_trace(points, "TOP", width=1e-3)
5454
points = [[0.0, 1e-3], [0.0, 10e-3], [100e-3, 10e-3], [100e-3, 1e-3], [0.0, 1e-3]]
55-
edb.modeler.create_polygon(points, "TOP")
55+
edb.modeler.create_polygon(points, "GND")
5656
points = [[0.0, -1e-3], [0.0, -10e-3], [100e-3, -10e-3], [100e-3, -1e-3], [0.0, -1e-3]]
57-
edb.modeler.create_polygon(points, "TOP")
57+
edb.modeler.create_polygon(points, "GND")
5858

5959

6060
# ## Place vias

0 commit comments

Comments
 (0)