├── LICENSE ├── README.md ├── classify_geometries.py ├── extract_geometrical_descriptors.py ├── files └── Duplex_A_20110907_optimized.ifc ├── geom_query.py ├── ifc_extract ├── __init__.py ├── groupings.py ├── operations.py └── output.py └── images ├── wall-plot.png └── wall-render.png /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AECgeeks/ifc_machine_learning_paper_2015/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AECgeeks/ifc_machine_learning_paper_2015/HEAD/README.md -------------------------------------------------------------------------------- /classify_geometries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AECgeeks/ifc_machine_learning_paper_2015/HEAD/classify_geometries.py -------------------------------------------------------------------------------- /extract_geometrical_descriptors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AECgeeks/ifc_machine_learning_paper_2015/HEAD/extract_geometrical_descriptors.py -------------------------------------------------------------------------------- /files/Duplex_A_20110907_optimized.ifc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AECgeeks/ifc_machine_learning_paper_2015/HEAD/files/Duplex_A_20110907_optimized.ifc -------------------------------------------------------------------------------- /geom_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AECgeeks/ifc_machine_learning_paper_2015/HEAD/geom_query.py -------------------------------------------------------------------------------- /ifc_extract/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AECgeeks/ifc_machine_learning_paper_2015/HEAD/ifc_extract/__init__.py -------------------------------------------------------------------------------- /ifc_extract/groupings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AECgeeks/ifc_machine_learning_paper_2015/HEAD/ifc_extract/groupings.py -------------------------------------------------------------------------------- /ifc_extract/operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AECgeeks/ifc_machine_learning_paper_2015/HEAD/ifc_extract/operations.py -------------------------------------------------------------------------------- /ifc_extract/output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AECgeeks/ifc_machine_learning_paper_2015/HEAD/ifc_extract/output.py -------------------------------------------------------------------------------- /images/wall-plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AECgeeks/ifc_machine_learning_paper_2015/HEAD/images/wall-plot.png -------------------------------------------------------------------------------- /images/wall-render.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AECgeeks/ifc_machine_learning_paper_2015/HEAD/images/wall-render.png --------------------------------------------------------------------------------