Import a 3D IGES file. (Initial Graphics Exchange Specification)
FUNCTION ImportIGES(fileName : STRING): BOOLEAN;def vs.ImportIGES(fileName):
return BOOLEAN| Name | Type | Description |
|---|---|---|
| fileName | STRING | full path to the file for import |
resultOK := ImportIGES('file.txt');import vs
# Import a 3D IGES file.
fileName = 'C:/Temp/example.txt'
ok = vs.ImportIGES(fileName)
if ok:
vs.Message('ImportIGES succeeded')
else:
vs.Message('ImportIGES failed')VS Functions: ExportIGES
Availability: from Vectorworks 2014