Import, Export & Interop
Every format above already has an EXPORT verb; this is the mirror. Formats round-trip into the same types — an imported STEP file becomes an ordinary ?solid, ready for FILLET, SIM MESH, or TESSELLATE exactly like one built from scratch.
Import, Edit, Re-Export
CAD IMPORT "legacy_housing.step" SET ?housing
AFTER CAD ?housing EDGE AT 40,0,10 SET ?edge
AFTER CAD FILLET EDGES [?edge] RADIUS 3 ON ?housing SET ?housing
AFTER CAD EXPORT ?housing AS "step" SET ?updatedPath
Mesh and BIM Import
MESH IMPORT "character.fbx" SET ?mesh
AFTER BIM IMPORT "building.ifc" SET ?bim
AFTER PCB IMPORT "board.pcbdoc" SET ?board
| Verb | Description |
|---|---|
CAD IMPORT "path.step"/"path.iges"/"path.dwg" SET ?solid | Bring in CAD geometry |
MESH IMPORT "path.obj"/"path.fbx" SET ?mesh | Bring in mesh geometry |
BIM IMPORT "path.ifc" SET ?bim | Bring in a building model |
PCB IMPORT "path.pcbdoc" SET ?board | Bring in a board design |
MESH ?mesh EXPORT AS "obj"/"fbx"/"stl"/"gltf" SET ?path | Send mesh geometry out |
CAD EXPORT ?solid AS "step"/"iges"/"stl"/"dwg" SET ?path | Send CAD geometry out |
BIM ?bim EXPORT AS "ifc" | Send a building model out |
PCB ?board EXPORT GERBER SET ?files | Send manufacturing files out |