Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/drc/drc/built-in-macros/_drc_layer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5950,10 +5950,10 @@ def _fill(with_left, *args)
bx = 0.0
by = 0.0
else
bx = [ fc_box.width, row_step.x ].max
by = [ fc_box.height, column_step.y ].max
bx = [ fc_box.width, row_step.x.abs + column_step.x.abs ].max + [ -fill_margin.x, 0 ].max
by = [ fc_box.height, row_step.y.abs + column_step.y.abs ].max + [ -fill_margin.y, 0 ].max
end
tp.tile_border(bx, by)
tp.tile_border(@engine.dbu * bx, @engine.dbu * by)
tp.threads = (@engine.threads || 1)

result_arg = "nil"
Expand Down
Binary file modified testdata/drc/drcFullTest_au1c.oas
Binary file not shown.
Binary file modified testdata/drc/drcSimpleTests_au43.gds
Binary file not shown.
Binary file modified testdata/drc/drcSimpleTests_au45.gds
Binary file not shown.
Loading