default render no bounds
This commit is contained in:
parent
bf422c3ed8
commit
4a81a50ac4
|
@ -16,9 +16,7 @@ def main():
|
||||||
d = axi.Drawing.load(args[0])
|
d = axi.Drawing.load(args[0])
|
||||||
d = d.rotate_and_scale_to_fit(12, 8.5, step=90)
|
d = d.rotate_and_scale_to_fit(12, 8.5, step=90)
|
||||||
path = args[1] if len(args) > 1 else 'out.png'
|
path = args[1] if len(args) > 1 else 'out.png'
|
||||||
im = d.render(
|
im = d.render()
|
||||||
scale=109 * 1, line_width=0.25/25.4)
|
|
||||||
# show_axi_bounds=False, use_axi_bounds=False)
|
|
||||||
im.write_to_png(path)
|
im.write_to_png(path)
|
||||||
return
|
return
|
||||||
device = axi.Device()
|
device = axi.Device()
|
||||||
|
|
Loading…
Reference in New Issue