├── .github └── ISSUE_TEMPLATE │ └── ifc-improvement.md ├── .gitignore ├── .travis.yml ├── README.md ├── images ├── 2020_ifc_proposal_decision_workflow.png ├── BuildingSMART_RGB_Icon_colour.png ├── language_independent_IFC.png └── readme ├── reference_schemas └── IFC4x2.exp ├── schemas └── IFC_4X2.xml └── scripts ├── UML_utils.py ├── express.py ├── main.py ├── process_schema.py ├── tikz-uml.sty ├── to_bsdd.py ├── to_express.py ├── to_express_repo.py ├── to_po.py └── xmi.py /.github/ISSUE_TEMPLATE/ifc-improvement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildingSMART/NextGen-IFC/HEAD/.github/ISSUE_TEMPLATE/ifc-improvement.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildingSMART/NextGen-IFC/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildingSMART/NextGen-IFC/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildingSMART/NextGen-IFC/HEAD/README.md -------------------------------------------------------------------------------- /images/2020_ifc_proposal_decision_workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildingSMART/NextGen-IFC/HEAD/images/2020_ifc_proposal_decision_workflow.png -------------------------------------------------------------------------------- /images/BuildingSMART_RGB_Icon_colour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildingSMART/NextGen-IFC/HEAD/images/BuildingSMART_RGB_Icon_colour.png -------------------------------------------------------------------------------- /images/language_independent_IFC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildingSMART/NextGen-IFC/HEAD/images/language_independent_IFC.png -------------------------------------------------------------------------------- /images/readme: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /reference_schemas/IFC4x2.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildingSMART/NextGen-IFC/HEAD/reference_schemas/IFC4x2.exp -------------------------------------------------------------------------------- /schemas/IFC_4X2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildingSMART/NextGen-IFC/HEAD/schemas/IFC_4X2.xml -------------------------------------------------------------------------------- /scripts/UML_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildingSMART/NextGen-IFC/HEAD/scripts/UML_utils.py -------------------------------------------------------------------------------- /scripts/express.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildingSMART/NextGen-IFC/HEAD/scripts/express.py -------------------------------------------------------------------------------- /scripts/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildingSMART/NextGen-IFC/HEAD/scripts/main.py -------------------------------------------------------------------------------- /scripts/process_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildingSMART/NextGen-IFC/HEAD/scripts/process_schema.py -------------------------------------------------------------------------------- /scripts/tikz-uml.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildingSMART/NextGen-IFC/HEAD/scripts/tikz-uml.sty -------------------------------------------------------------------------------- /scripts/to_bsdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildingSMART/NextGen-IFC/HEAD/scripts/to_bsdd.py -------------------------------------------------------------------------------- /scripts/to_express.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildingSMART/NextGen-IFC/HEAD/scripts/to_express.py -------------------------------------------------------------------------------- /scripts/to_express_repo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildingSMART/NextGen-IFC/HEAD/scripts/to_express_repo.py -------------------------------------------------------------------------------- /scripts/to_po.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildingSMART/NextGen-IFC/HEAD/scripts/to_po.py -------------------------------------------------------------------------------- /scripts/xmi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buildingSMART/NextGen-IFC/HEAD/scripts/xmi.py --------------------------------------------------------------------------------