JMS's latest SVG importer with his compatibility fixes and optimizations.

http://blenderartists.org/forum/showthread.php?t=66207
This commit is contained in:
2006-12-29 11:09:29 +00:00
parent 2f7abb43f7
commit 60544bb7cc
2 changed files with 275 additions and 316 deletions

View File

@@ -46,6 +46,7 @@ argv=__script__['arg']
if argv=='SVG':
from svg2obj import *
fonctionSELECT = functionSELECT # can they all be called function?
elif argv=='AI':
from ai2obj import *
@@ -58,6 +59,7 @@ elif argv=='Gimp_1_0':
elif argv=='Gimp_2_0':
from svg2obj import *
fonctionSELECT = functionSELECT # can they all be called function?
text = 'Import %s' % argv
Blender.Window.FileSelector (fonctionSELECT, text)