Basics.5 Visualization

This example shows how to load an IFC file and display it in compas_viewer.

from compas_ifc.model import Model

model = Model("data/Duplex_A_20110907.ifc")
model.show()

Example Output:

../_images/model_view.jpg

Alternatively, you can also display individual elements in the model.

from compas_ifc.model import Model

model = Model("data/Duplex_A_20110907.ifc")
model.get_entities_by_type("IfcWindow")[0].show()
../_images/element_view.jpg