diff --git a/script/test/Layout.py b/script/test/Layout.py new file mode 100644 index 0000000..43ed6d1 --- /dev/null +++ b/script/test/Layout.py @@ -0,0 +1,10 @@ + +p = plot(None)[0] +p.setLegendVisible(True) +for block in get_blocks(): + print block + (xmin, xmax) = block.x_range + (ymin, ymax) = block.y_range + plot_rectangle(p, xmin, ymin, xmax, ymax, name = block.id) + + \ No newline at end of file