Ver Fonte

changed to sketch2SVG

Gilbert Brault há 5 anos atrás
pai
commit
a9e3bcd8a5
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      pysketcher/shapes.py

+ 1 - 1
pysketcher/shapes.py

@@ -19,7 +19,7 @@ from ruamel.yaml import YAML
 from .MatplotlibDraw import MatplotlibDraw
 drawing_tool = MatplotlibDraw()
 
-def toSVG():
+def sketch2SVG():
     f = BytesIO()
     drawing_tool.mpl.savefig(f, format="svg")
     return f.getvalue()