From d84dec153ddb0262a9f1da0102b49dc82b9b7cf6 Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Tue, 12 Apr 2022 15:57:28 -0300 Subject: [PATCH] Removed the moveto used in the SVG merge - Not really needed for KiCad files --- kibot/out_pcb_print.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/kibot/out_pcb_print.py b/kibot/out_pcb_print.py index d570affb..4aaa3d1f 100644 --- a/kibot/out_pcb_print.py +++ b/kibot/out_pcb_print.py @@ -32,7 +32,6 @@ PDF2PS = 'pdf2ps' # - Use PyPDF2 for pdfunite # - Implement pad, vias, etc colors -# - move(1,1)? Really needed? 0,0? # - Analyze KiCad 6 long delay # - Manually draw the frame @@ -127,7 +126,6 @@ def merge_svg(input_folder, input_files, output_folder, output_file, colored_hol logger.debug(' - Scaling {} by {}'.format(file, scale)) for e in root: e.scale(scale) - root.moveto(1, 1) svg_out.append([root]) svg_out.save(os.path.join(output_folder, output_file)) return phys_width