Export the selection into a ACIS SAT 3D model file.
FUNCTION ExportSAT(
filePath : STRING;
solidAsSurface : BOOLEAN): BOOLEAN;def vs.ExportSAT(filePath, solidAsSurface):
return BOOLEAN| Name | Type | Description |
|---|---|---|
| filePath | STRING | Output file path. |
| solidAsSurface | BOOLEAN |
resultOK := ExportSAT('file.txt', TRUE);import vs
# Export the selection into a ACIS SAT 3D model file.
filePath = 'C:/Temp'
solidAsSurface = True
ok = vs.ExportSAT(filePath, solidAsSurface)
if ok:
vs.Message('ExportSAT succeeded')
else:
vs.Message('ExportSAT failed')Availability: from Vectorworks 2013