Skalierung korrigiert auf 1.0

This commit is contained in:
Mario Voigt 2019-08-08 22:08:12 +02:00
parent b883f3a201
commit 22ea80e3a5
1 changed files with 2 additions and 1 deletions

View File

@ -3326,7 +3326,8 @@ class plotter_gcode(inkex.Effect):
if self.options.coordinates_unit == "MM":
points = [[0.,0.,0.],[100.,0.,0.],[0.,100.,0.]]
orientation_scale = 3.5433070660
#2019.08.08 - geaendert (Mario Voigt) orientation_scale = 3.5433070660
orientation_scale = 1.0
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.]]