From b01ff643b7ab3c194d51fc31b6976fc24243b1f1 Mon Sep 17 00:00:00 2001 From: Mario Voigt Date: Thu, 8 Aug 2019 22:40:25 +0200 Subject: [PATCH] =?UTF-8?q?Skalierung=20zur=C3=BCckge=C3=A4ndert=20(tempor?= =?UTF-8?q?=C3=A4r)=20->=20Bug=20in=20Code:=20Je=20nachdem=20ob=20Hatchfil?= =?UTF-8?q?l=20verwendet=20wird=20ist=20die=20Skalierung=20entweder=203.54?= =?UTF-8?q?33070660=20oder=201.000000000?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- plaster.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plaster.py b/plaster.py index f70a83d..53b82ad 100644 --- a/plaster.py +++ b/plaster.py @@ -3327,7 +3327,7 @@ class plotter_gcode(inkex.Effect): if self.options.coordinates_unit == "MM": points = [[0.,0.,0.],[100.,0.,0.],[0.,100.,0.]] #2019.08.08 - geaendert (Mario Voigt) orientation_scale = 3.5433070660 - orientation_scale = 1.0 + orientation_scale = 3.5433070660 print_("orientation_scale < 0 ===> switching to mm units=%0.10f"%orientation_scale ) elif self.options.coordinates_unit == "IN": points = [[0.,0.,0.],[5.,0.,0.],[0.,5.,0.]]