You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I changed the units in an inkscape document from millimetres to inches. When I send a docuemnt to the machine the plugin fails and returns the following error
Traceback (most recent call last):
File "sendto_silhouette.py", line 1042, in
e.affect()
File "/usr/share/inkscape/extensions/inkex.py", line 271, in affect
self.effect()
File "sendto_silhouette.py", line 990, in effect
mediawidth=px2mm(self.docWidth),
File "sendto_silhouette.py", line 119, in px2mm
return px*25.4/90
TypeError: unsupported operand type(s) for *: 'NoneType' and 'float'
When I change it back to millimetres it works. I think either this should be fixed of specified in the README that it only works with millimetres
The text was updated successfully, but these errors were encountered:
Fixed in version 1.18 -- the recycled eggbot-code did not support inches. Added that.
We still miss support for units pc and pt, if someone knows the exact formula for this, please feel free to enhance the GetLengh function near
I changed the units in an inkscape document from millimetres to inches. When I send a docuemnt to the machine the plugin fails and returns the following error
Traceback (most recent call last):
File "sendto_silhouette.py", line 1042, in
e.affect()
File "/usr/share/inkscape/extensions/inkex.py", line 271, in affect
self.effect()
File "sendto_silhouette.py", line 990, in effect
mediawidth=px2mm(self.docWidth),
File "sendto_silhouette.py", line 119, in px2mm
return px*25.4/90
TypeError: unsupported operand type(s) for *: 'NoneType' and 'float'
When I change it back to millimetres it works. I think either this should be fixed of specified in the README that it only works with millimetres
The text was updated successfully, but these errors were encountered: