From 4a81a50ac428e18b8eeeea2df80ebe7a80bac6e1 Mon Sep 17 00:00:00 2001 From: Michael Fogleman Date: Sun, 11 Mar 2018 14:28:34 -0400 Subject: [PATCH] default render no bounds --- axi/main.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/axi/main.py b/axi/main.py index 55e39cd..5854380 100644 --- a/axi/main.py +++ b/axi/main.py @@ -16,9 +16,7 @@ def main(): d = axi.Drawing.load(args[0]) d = d.rotate_and_scale_to_fit(12, 8.5, step=90) path = args[1] if len(args) > 1 else 'out.png' - im = d.render( - scale=109 * 1, line_width=0.25/25.4) - # show_axi_bounds=False, use_axi_bounds=False) + im = d.render() im.write_to_png(path) return device = axi.Device()