mirror of
https://github.com/brmlab/lasic.git
synced 2025-06-10 02:04:00 +02:00
svg/: SVG -> Lasic converter - by btr, based on laserprojector code
This commit is contained in:
parent
2f6c80e9e3
commit
4a64b1688e
2 changed files with 201 additions and 0 deletions
14
svg/showsvg.py
Executable file
14
svg/showsvg.py
Executable 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)
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue