Remove 2 SVG scripts. They're not working and should not have been checked in.

git-svn-id: http://svn.robofab.com/trunk@80 b5fa9d6c-a76f-4ffd-b3cb-f825fc41095c
This commit is contained in:
Erik van Blokland 2008-04-20 10:19:09 +00:00
parent 9ec254f80c
commit 630b06cf57
2 changed files with 0 additions and 27 deletions

View File

@ -1,12 +0,0 @@
#FLM: SVG font generate
from robofab.world import CurrentFont
from robofab.tools.toolsSVG import makeSVGFont
import os
f = CurrentFont()
if f is not None:
path = os.path.splitext(f.path)[0]+".svg"
makeSVGFont(f, path, exportKerning=False)
print "done"

View File

@ -1,15 +0,0 @@
#FLM: SVG font import
from robofab.world import CurrentFont, NewFont
from robofab.tools.toolsSVG import SVGFontReader
from robofab.interface.all.dialogs import GetFile
import os
path = GetFile("Select SVG font file.")
if path is not None:
print path
font = NewFont()
reader = SVGFontReader(path, font)
print "done"