├── .gitignore ├── .idea ├── .gitignore ├── ifcopenshell_examples.iml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── 3D ├── README.md ├── images │ └── qt3d_minimal.png └── qt3d_minimal.py ├── Console ├── IFCOSPrintHierarchy.py ├── README.md ├── geometry_minimal.py └── minimal.py ├── GUI ├── README.md ├── ifc_schemaviewer.py ├── ifc_treeviewer.py ├── ifc_treeviewer2.py └── images │ ├── ifc_schemaviewer.png │ ├── ifc_treeviewer.png │ ├── ifc_treeviewer2_complete.png │ ├── ifc_treeviewer2_empty.png │ ├── ifc_treeviewer2_prop.png │ ├── ifc_treeviewer_empty.png │ └── ifc_treeviewer_root.png ├── LICENSE ├── README.md └── Viewer ├── IFCCustomDelegate.py ├── IFCListingWidget.py ├── IFCPropertyWidget.py ├── IFCQt3DView.py ├── IFCTreeWidget.py ├── QIFCViewer.py ├── README.md └── images ├── QIFCViewer_01.png ├── QIFCViewer_02.png ├── QIFCViewer_03.png ├── QIFCViewer_04.png ├── QIFCViewer_05.png └── QIFCViewer_06_win.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefkeB/ifcopenshell_examples/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/ifcopenshell_examples.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefkeB/ifcopenshell_examples/HEAD/.idea/ifcopenshell_examples.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefkeB/ifcopenshell_examples/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefkeB/ifcopenshell_examples/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefkeB/ifcopenshell_examples/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefkeB/ifcopenshell_examples/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefkeB/ifcopenshell_examples/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /3D/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefkeB/ifcopenshell_examples/HEAD/3D/README.md -------------------------------------------------------------------------------- /3D/images/qt3d_minimal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefkeB/ifcopenshell_examples/HEAD/3D/images/qt3d_minimal.png -------------------------------------------------------------------------------- /3D/qt3d_minimal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefkeB/ifcopenshell_examples/HEAD/3D/qt3d_minimal.py -------------------------------------------------------------------------------- /Console/IFCOSPrintHierarchy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefkeB/ifcopenshell_examples/HEAD/Console/IFCOSPrintHierarchy.py -------------------------------------------------------------------------------- /Console/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefkeB/ifcopenshell_examples/HEAD/Console/README.md -------------------------------------------------------------------------------- /Console/geometry_minimal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefkeB/ifcopenshell_examples/HEAD/Console/geometry_minimal.py -------------------------------------------------------------------------------- /Console/minimal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefkeB/ifcopenshell_examples/HEAD/Console/minimal.py -------------------------------------------------------------------------------- /GUI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefkeB/ifcopenshell_examples/HEAD/GUI/README.md -------------------------------------------------------------------------------- /GUI/ifc_schemaviewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefkeB/ifcopenshell_examples/HEAD/GUI/ifc_schemaviewer.py -------------------------------------------------------------------------------- /GUI/ifc_treeviewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefkeB/ifcopenshell_examples/HEAD/GUI/ifc_treeviewer.py -------------------------------------------------------------------------------- /GUI/ifc_treeviewer2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefkeB/ifcopenshell_examples/HEAD/GUI/ifc_treeviewer2.py -------------------------------------------------------------------------------- /GUI/images/ifc_schemaviewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefkeB/ifcopenshell_examples/HEAD/GUI/images/ifc_schemaviewer.png -------------------------------------------------------------------------------- /GUI/images/ifc_treeviewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefkeB/ifcopenshell_examples/HEAD/GUI/images/ifc_treeviewer.png -------------------------------------------------------------------------------- /GUI/images/ifc_treeviewer2_complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefkeB/ifcopenshell_examples/HEAD/GUI/images/ifc_treeviewer2_complete.png -------------------------------------------------------------------------------- /GUI/images/ifc_treeviewer2_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefkeB/ifcopenshell_examples/HEAD/GUI/images/ifc_treeviewer2_empty.png -------------------------------------------------------------------------------- /GUI/images/ifc_treeviewer2_prop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefkeB/ifcopenshell_examples/HEAD/GUI/images/ifc_treeviewer2_prop.png -------------------------------------------------------------------------------- /GUI/images/ifc_treeviewer_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefkeB/ifcopenshell_examples/HEAD/GUI/images/ifc_treeviewer_empty.png -------------------------------------------------------------------------------- /GUI/images/ifc_treeviewer_root.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefkeB/ifcopenshell_examples/HEAD/GUI/images/ifc_treeviewer_root.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefkeB/ifcopenshell_examples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefkeB/ifcopenshell_examples/HEAD/README.md -------------------------------------------------------------------------------- /Viewer/IFCCustomDelegate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefkeB/ifcopenshell_examples/HEAD/Viewer/IFCCustomDelegate.py -------------------------------------------------------------------------------- /Viewer/IFCListingWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefkeB/ifcopenshell_examples/HEAD/Viewer/IFCListingWidget.py -------------------------------------------------------------------------------- /Viewer/IFCPropertyWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefkeB/ifcopenshell_examples/HEAD/Viewer/IFCPropertyWidget.py -------------------------------------------------------------------------------- /Viewer/IFCQt3DView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefkeB/ifcopenshell_examples/HEAD/Viewer/IFCQt3DView.py -------------------------------------------------------------------------------- /Viewer/IFCTreeWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefkeB/ifcopenshell_examples/HEAD/Viewer/IFCTreeWidget.py -------------------------------------------------------------------------------- /Viewer/QIFCViewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefkeB/ifcopenshell_examples/HEAD/Viewer/QIFCViewer.py -------------------------------------------------------------------------------- /Viewer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefkeB/ifcopenshell_examples/HEAD/Viewer/README.md -------------------------------------------------------------------------------- /Viewer/images/QIFCViewer_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefkeB/ifcopenshell_examples/HEAD/Viewer/images/QIFCViewer_01.png -------------------------------------------------------------------------------- /Viewer/images/QIFCViewer_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefkeB/ifcopenshell_examples/HEAD/Viewer/images/QIFCViewer_02.png -------------------------------------------------------------------------------- /Viewer/images/QIFCViewer_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefkeB/ifcopenshell_examples/HEAD/Viewer/images/QIFCViewer_03.png -------------------------------------------------------------------------------- /Viewer/images/QIFCViewer_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefkeB/ifcopenshell_examples/HEAD/Viewer/images/QIFCViewer_04.png -------------------------------------------------------------------------------- /Viewer/images/QIFCViewer_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefkeB/ifcopenshell_examples/HEAD/Viewer/images/QIFCViewer_05.png -------------------------------------------------------------------------------- /Viewer/images/QIFCViewer_06_win.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefkeB/ifcopenshell_examples/HEAD/Viewer/images/QIFCViewer_06_win.png --------------------------------------------------------------------------------