With OCP 7.7.1 it should be possible to import OCCT shapes from memory ```python import cq import gmsh gmsh.initialize() gmsh.model.occ.importShapesNativePointer(cq.Workplane().box(1,1,1).val()._address()) ``` - [x] Check if it actually works