Merge pull request #422 from KLayout/issue-406

Issue 406
This commit is contained in:
Matthias Köfferlein
2019-11-22 23:12:16 +01:00
committed by GitHub
27 changed files with 432 additions and 63 deletions
Binary file not shown.
+16
View File
@@ -589,6 +589,22 @@ def run_testsuite(dm, ic, tiled = false, hier = false)
p = c.edges.pull_interacting(b.edges)
p.output(lb + 5, dm)
lb += 10 #440
message "--- edge booleans, intersections #{lb}"
p = c.edges - b.edges
p.output(lb, dm)
p = b.edges - c.edges
p.output(lb + 1, dm)
p = c.edges & b.edges
p.output(lb + 2, dm)
p = c.edges ^ b.edges
p.output(lb + 3, dm)
p = c.edges.intersections(b.edges)
p.output(lb + 4, dm)
p = b.edges.intersections(c.edges)
p.output(lb + 5, dm)
end
if $drc_test_mode == 1
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.