소스 검색

changed to sketch2SVG

Gilbert Brault 5 년 전
부모
커밋
a9e3bcd8a5
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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()