IfcOpenshell inside Bonsai: load new elements without reloading the whole file?

I have a script that creates IfcElements using IfcOpenShell. I'm running the script inside Blender.
I would like to display the new elements inside Bonsai without having to reload the whole Ifc file since this takes quite some time.

import bonsai.tool as tool

model = tool.Ifc.get()

new_members = ... # adding new element to (e.g.a wall)


tool.Ifc.set(model)

Comments

Sign In or Register to comment.