hi
i am beginner in cityenigne
very nice to meet you
and thank you for good help .
i have a problem >
i made this python .
but that did not work .
pls can you teach me ?
from scripting import *
import sys
sys.path.append("C:\\ad")
ce = CE()
settings = dxfImportSettings()
ce.importFile(ce.toFSPath("C:\ad\1.dxf"), settings)
Hi @JeoCho,
So something like this should work:
from scripting import *
ce = CE()
settings = DXFImportSettings()
ce.importFile("C:\ad\1.dxf", settings)
Best,
Jonas