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
VerbDescription
CAD IMPORT "path.step"/"path.iges"/"path.dwg" SET ?solidBring in CAD geometry
MESH IMPORT "path.obj"/"path.fbx" SET ?meshBring in mesh geometry
BIM IMPORT "path.ifc" SET ?bimBring in a building model
PCB IMPORT "path.pcbdoc" SET ?boardBring in a board design
MESH ?mesh EXPORT AS "obj"/"fbx"/"stl"/"gltf" SET ?pathSend mesh geometry out
CAD EXPORT ?solid AS "step"/"iges"/"stl"/"dwg" SET ?pathSend CAD geometry out
BIM ?bim EXPORT AS "ifc"Send a building model out
PCB ?board EXPORT GERBER SET ?filesSend manufacturing files out