├── .gitignore ├── .gitmodules ├── CheckListeRelSpaceBoundaryParLogiciel.ods ├── LICENSE ├── MANIFEST.in ├── Notes.md ├── README.md ├── TestScripts └── .gitignore ├── freecad └── bem │ ├── LesoType.drawio │ ├── LesoType.md │ ├── LesoType.svg │ ├── bem_logging.py │ ├── bem_xml.py │ ├── boundaries.py │ ├── commands.py │ ├── entities.py │ ├── ifc_importer.py │ ├── init_gui.py │ ├── manual_test.py │ ├── materials.py │ ├── progress.md │ ├── progress.py │ ├── resources │ └── template_resource.svg │ ├── test_boundaries.py │ ├── typing.pyi │ ├── utils.py │ └── version.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ENAC-CNPA/BIMxBEM/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ENAC-CNPA/BIMxBEM/HEAD/.gitmodules -------------------------------------------------------------------------------- /CheckListeRelSpaceBoundaryParLogiciel.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ENAC-CNPA/BIMxBEM/HEAD/CheckListeRelSpaceBoundaryParLogiciel.ods -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ENAC-CNPA/BIMxBEM/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | recursive-include freecad/bem/resources * 2 | -------------------------------------------------------------------------------- /Notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ENAC-CNPA/BIMxBEM/HEAD/Notes.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ENAC-CNPA/BIMxBEM/HEAD/README.md -------------------------------------------------------------------------------- /TestScripts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ENAC-CNPA/BIMxBEM/HEAD/TestScripts/.gitignore -------------------------------------------------------------------------------- /freecad/bem/LesoType.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ENAC-CNPA/BIMxBEM/HEAD/freecad/bem/LesoType.drawio -------------------------------------------------------------------------------- /freecad/bem/LesoType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ENAC-CNPA/BIMxBEM/HEAD/freecad/bem/LesoType.md -------------------------------------------------------------------------------- /freecad/bem/LesoType.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ENAC-CNPA/BIMxBEM/HEAD/freecad/bem/LesoType.svg -------------------------------------------------------------------------------- /freecad/bem/bem_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ENAC-CNPA/BIMxBEM/HEAD/freecad/bem/bem_logging.py -------------------------------------------------------------------------------- /freecad/bem/bem_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ENAC-CNPA/BIMxBEM/HEAD/freecad/bem/bem_xml.py -------------------------------------------------------------------------------- /freecad/bem/boundaries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ENAC-CNPA/BIMxBEM/HEAD/freecad/bem/boundaries.py -------------------------------------------------------------------------------- /freecad/bem/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ENAC-CNPA/BIMxBEM/HEAD/freecad/bem/commands.py -------------------------------------------------------------------------------- /freecad/bem/entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ENAC-CNPA/BIMxBEM/HEAD/freecad/bem/entities.py -------------------------------------------------------------------------------- /freecad/bem/ifc_importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ENAC-CNPA/BIMxBEM/HEAD/freecad/bem/ifc_importer.py -------------------------------------------------------------------------------- /freecad/bem/init_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ENAC-CNPA/BIMxBEM/HEAD/freecad/bem/init_gui.py -------------------------------------------------------------------------------- /freecad/bem/manual_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ENAC-CNPA/BIMxBEM/HEAD/freecad/bem/manual_test.py -------------------------------------------------------------------------------- /freecad/bem/materials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ENAC-CNPA/BIMxBEM/HEAD/freecad/bem/materials.py -------------------------------------------------------------------------------- /freecad/bem/progress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ENAC-CNPA/BIMxBEM/HEAD/freecad/bem/progress.md -------------------------------------------------------------------------------- /freecad/bem/progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ENAC-CNPA/BIMxBEM/HEAD/freecad/bem/progress.py -------------------------------------------------------------------------------- /freecad/bem/resources/template_resource.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ENAC-CNPA/BIMxBEM/HEAD/freecad/bem/resources/template_resource.svg -------------------------------------------------------------------------------- /freecad/bem/test_boundaries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ENAC-CNPA/BIMxBEM/HEAD/freecad/bem/test_boundaries.py -------------------------------------------------------------------------------- /freecad/bem/typing.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ENAC-CNPA/BIMxBEM/HEAD/freecad/bem/typing.pyi -------------------------------------------------------------------------------- /freecad/bem/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ENAC-CNPA/BIMxBEM/HEAD/freecad/bem/utils.py -------------------------------------------------------------------------------- /freecad/bem/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.9.0" 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ENAC-CNPA/BIMxBEM/HEAD/setup.py --------------------------------------------------------------------------------