1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
From: Agathe Porte <debian@microjoe.org>
Date: Thu, 25 Feb 2021 11:50:27 +0100
Subject: svgcode.py: use upstream svgelements library
Forwarded: https://github.com/vlachoudis/bCNC/pull/1556
---
bCNC/lib/svgcode.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/bCNC/lib/svgcode.py b/bCNC/lib/svgcode.py
index 0762589..cb121f8 100644
--- a/bCNC/lib/svgcode.py
+++ b/bCNC/lib/svgcode.py
@@ -11,7 +11,7 @@
# print(path['path'])
import numpy
-from svg_elements import SVG, Path, Move, Shape, Line, Close, Arc
+from svgelements import SVG, Path, Move, Shape, Line, Close, Arc
class SVGcode:
|