svg/: SVG -> Lasic converter - by btr, based on laserprojector code

This commit is contained in:
Petr Baudis 2011-12-28 01:54:49 +01:00
parent 2f6c80e9e3
commit 4a64b1688e
2 changed files with 201 additions and 0 deletions

14
svg/showsvg.py Executable file
View file

@ -0,0 +1,14 @@
#!/usr/bin/env python
import sys
from SvgProcessor import SvgProcessor
if len(sys.argv) < 2:
print 'Usage: showsvg filename.svg'
sys.exit(1)
sp = SvgProcessor()
sp.parseFile(sys.argv[1], 1)