diff --git a/extensions/fablabchemnitz/roland_cutstudio_eps_export/roland_cutstudio_eps_export.py b/extensions/fablabchemnitz/roland_cutstudio_eps_export/roland_cutstudio_eps_export.py index 641b2a2..0645c41 100644 --- a/extensions/fablabchemnitz/roland_cutstudio_eps_export/roland_cutstudio_eps_export.py +++ b/extensions/fablabchemnitz/roland_cutstudio_eps_export/roland_cutstudio_eps_export.py @@ -159,8 +159,8 @@ class RolandCutStudioEPSExport(inkex.OutputExtension): m=m.transpose() #debug("with {}".format(m)) pnew = numpy.matmul(m, p) - x=float(pnew[0]) - y=float(pnew[1]) + x=float(pnew[0][0]) + y=float(pnew[1][0]) #debug("to: {} {}".format(x, y)) return [x, y]