├── .gitattributes ├── .gitignore ├── MainTests ├── ConversionTests.cs ├── Files │ └── OneWallTwoWindows.ifc ├── MainTests.csproj ├── Properties │ └── AssemblyInfo.cs └── SemanticTests.cs ├── README.md ├── Resources ├── IfcOpenShell.url ├── Importing IFC Models · xeolabs-xeogl Wiki.url ├── OneWall.gltf ├── OneWall.gltfb ├── OneWall.ifc ├── OneWall.txt ├── Releases · KhronosGroup-COLLADA2GLTF.url ├── TwoColumsOneBeam.dae ├── TwoColumsOneBeam.gltf ├── TwoColumsOneBeam.gltfb ├── TwoColumsOneBeam.ifc ├── TwoWallsTwoColour.gltf ├── TwoWallsTwoColour.gltfb ├── TwoWallsTwoColour.ifc └── TwoWallsTwoColour.txt ├── Xbim.GLTF.IO ├── Builder.cs ├── ExportHelpers │ └── MultipleFilesExporter.cs ├── Properties │ └── AssemblyInfo.cs ├── SemanticExport │ ├── BuildingElement.cs │ ├── BuildingModel.cs │ ├── BuildingModelExtractor.cs │ ├── BuildingStorey.cs │ ├── BuildingSystem.cs │ ├── ElementPropertySet.cs │ ├── IfcInfo.cs │ └── JsonIfcObject.cs ├── Xbim.GLTF.IO.csproj ├── XbimMesher.cs └── app.config ├── XbimGLTF.sln ├── XbimPlugin.Gltf.IO ├── App.xaml ├── App.xaml.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ ├── Settings.settings │ └── launchSettings.json ├── XbimPlugin.Gltf.IO.csproj └── XplorerGltfExporter │ ├── XplorerGltfExporter.xaml │ └── XplorerGltfExporter.xaml.cs ├── XbimPlugin.Gltf.nuspec ├── azure-pipelines.yml ├── glTF-CSharp-LoaderLICENSE.md ├── license.md ├── nuget.config └── xBIM.ico /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBimTeam/XbimGltf/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBimTeam/XbimGltf/HEAD/.gitignore -------------------------------------------------------------------------------- /MainTests/ConversionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBimTeam/XbimGltf/HEAD/MainTests/ConversionTests.cs -------------------------------------------------------------------------------- /MainTests/Files/OneWallTwoWindows.ifc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBimTeam/XbimGltf/HEAD/MainTests/Files/OneWallTwoWindows.ifc -------------------------------------------------------------------------------- /MainTests/MainTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBimTeam/XbimGltf/HEAD/MainTests/MainTests.csproj -------------------------------------------------------------------------------- /MainTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBimTeam/XbimGltf/HEAD/MainTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MainTests/SemanticTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBimTeam/XbimGltf/HEAD/MainTests/SemanticTests.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBimTeam/XbimGltf/HEAD/README.md -------------------------------------------------------------------------------- /Resources/IfcOpenShell.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=http://ifcopenshell.org/ifcconvert.html 3 | -------------------------------------------------------------------------------- /Resources/Importing IFC Models · xeolabs-xeogl Wiki.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBimTeam/XbimGltf/HEAD/Resources/Importing IFC Models · xeolabs-xeogl Wiki.url -------------------------------------------------------------------------------- /Resources/OneWall.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBimTeam/XbimGltf/HEAD/Resources/OneWall.gltf -------------------------------------------------------------------------------- /Resources/OneWall.gltfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBimTeam/XbimGltf/HEAD/Resources/OneWall.gltfb -------------------------------------------------------------------------------- /Resources/OneWall.ifc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBimTeam/XbimGltf/HEAD/Resources/OneWall.ifc -------------------------------------------------------------------------------- /Resources/OneWall.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBimTeam/XbimGltf/HEAD/Resources/OneWall.txt -------------------------------------------------------------------------------- /Resources/Releases · KhronosGroup-COLLADA2GLTF.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://github.com/KhronosGroup/COLLADA2GLTF/releases 3 | -------------------------------------------------------------------------------- /Resources/TwoColumsOneBeam.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBimTeam/XbimGltf/HEAD/Resources/TwoColumsOneBeam.dae -------------------------------------------------------------------------------- /Resources/TwoColumsOneBeam.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBimTeam/XbimGltf/HEAD/Resources/TwoColumsOneBeam.gltf -------------------------------------------------------------------------------- /Resources/TwoColumsOneBeam.gltfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBimTeam/XbimGltf/HEAD/Resources/TwoColumsOneBeam.gltfb -------------------------------------------------------------------------------- /Resources/TwoColumsOneBeam.ifc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBimTeam/XbimGltf/HEAD/Resources/TwoColumsOneBeam.ifc -------------------------------------------------------------------------------- /Resources/TwoWallsTwoColour.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBimTeam/XbimGltf/HEAD/Resources/TwoWallsTwoColour.gltf -------------------------------------------------------------------------------- /Resources/TwoWallsTwoColour.gltfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBimTeam/XbimGltf/HEAD/Resources/TwoWallsTwoColour.gltfb -------------------------------------------------------------------------------- /Resources/TwoWallsTwoColour.ifc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBimTeam/XbimGltf/HEAD/Resources/TwoWallsTwoColour.ifc -------------------------------------------------------------------------------- /Resources/TwoWallsTwoColour.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBimTeam/XbimGltf/HEAD/Resources/TwoWallsTwoColour.txt -------------------------------------------------------------------------------- /Xbim.GLTF.IO/Builder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBimTeam/XbimGltf/HEAD/Xbim.GLTF.IO/Builder.cs -------------------------------------------------------------------------------- /Xbim.GLTF.IO/ExportHelpers/MultipleFilesExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBimTeam/XbimGltf/HEAD/Xbim.GLTF.IO/ExportHelpers/MultipleFilesExporter.cs -------------------------------------------------------------------------------- /Xbim.GLTF.IO/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBimTeam/XbimGltf/HEAD/Xbim.GLTF.IO/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Xbim.GLTF.IO/SemanticExport/BuildingElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBimTeam/XbimGltf/HEAD/Xbim.GLTF.IO/SemanticExport/BuildingElement.cs -------------------------------------------------------------------------------- /Xbim.GLTF.IO/SemanticExport/BuildingModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBimTeam/XbimGltf/HEAD/Xbim.GLTF.IO/SemanticExport/BuildingModel.cs -------------------------------------------------------------------------------- /Xbim.GLTF.IO/SemanticExport/BuildingModelExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBimTeam/XbimGltf/HEAD/Xbim.GLTF.IO/SemanticExport/BuildingModelExtractor.cs -------------------------------------------------------------------------------- /Xbim.GLTF.IO/SemanticExport/BuildingStorey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBimTeam/XbimGltf/HEAD/Xbim.GLTF.IO/SemanticExport/BuildingStorey.cs -------------------------------------------------------------------------------- /Xbim.GLTF.IO/SemanticExport/BuildingSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBimTeam/XbimGltf/HEAD/Xbim.GLTF.IO/SemanticExport/BuildingSystem.cs -------------------------------------------------------------------------------- /Xbim.GLTF.IO/SemanticExport/ElementPropertySet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBimTeam/XbimGltf/HEAD/Xbim.GLTF.IO/SemanticExport/ElementPropertySet.cs -------------------------------------------------------------------------------- /Xbim.GLTF.IO/SemanticExport/IfcInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBimTeam/XbimGltf/HEAD/Xbim.GLTF.IO/SemanticExport/IfcInfo.cs -------------------------------------------------------------------------------- /Xbim.GLTF.IO/SemanticExport/JsonIfcObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBimTeam/XbimGltf/HEAD/Xbim.GLTF.IO/SemanticExport/JsonIfcObject.cs -------------------------------------------------------------------------------- /Xbim.GLTF.IO/Xbim.GLTF.IO.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBimTeam/XbimGltf/HEAD/Xbim.GLTF.IO/Xbim.GLTF.IO.csproj -------------------------------------------------------------------------------- /Xbim.GLTF.IO/XbimMesher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBimTeam/XbimGltf/HEAD/Xbim.GLTF.IO/XbimMesher.cs -------------------------------------------------------------------------------- /Xbim.GLTF.IO/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBimTeam/XbimGltf/HEAD/Xbim.GLTF.IO/app.config -------------------------------------------------------------------------------- /XbimGLTF.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBimTeam/XbimGltf/HEAD/XbimGLTF.sln -------------------------------------------------------------------------------- /XbimPlugin.Gltf.IO/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBimTeam/XbimGltf/HEAD/XbimPlugin.Gltf.IO/App.xaml -------------------------------------------------------------------------------- /XbimPlugin.Gltf.IO/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBimTeam/XbimGltf/HEAD/XbimPlugin.Gltf.IO/App.xaml.cs -------------------------------------------------------------------------------- /XbimPlugin.Gltf.IO/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBimTeam/XbimGltf/HEAD/XbimPlugin.Gltf.IO/MainWindow.xaml -------------------------------------------------------------------------------- /XbimPlugin.Gltf.IO/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBimTeam/XbimGltf/HEAD/XbimPlugin.Gltf.IO/MainWindow.xaml.cs -------------------------------------------------------------------------------- /XbimPlugin.Gltf.IO/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBimTeam/XbimGltf/HEAD/XbimPlugin.Gltf.IO/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /XbimPlugin.Gltf.IO/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBimTeam/XbimGltf/HEAD/XbimPlugin.Gltf.IO/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /XbimPlugin.Gltf.IO/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBimTeam/XbimGltf/HEAD/XbimPlugin.Gltf.IO/Properties/Resources.resx -------------------------------------------------------------------------------- /XbimPlugin.Gltf.IO/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBimTeam/XbimGltf/HEAD/XbimPlugin.Gltf.IO/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /XbimPlugin.Gltf.IO/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBimTeam/XbimGltf/HEAD/XbimPlugin.Gltf.IO/Properties/Settings.settings -------------------------------------------------------------------------------- /XbimPlugin.Gltf.IO/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBimTeam/XbimGltf/HEAD/XbimPlugin.Gltf.IO/Properties/launchSettings.json -------------------------------------------------------------------------------- /XbimPlugin.Gltf.IO/XbimPlugin.Gltf.IO.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBimTeam/XbimGltf/HEAD/XbimPlugin.Gltf.IO/XbimPlugin.Gltf.IO.csproj -------------------------------------------------------------------------------- /XbimPlugin.Gltf.IO/XplorerGltfExporter/XplorerGltfExporter.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBimTeam/XbimGltf/HEAD/XbimPlugin.Gltf.IO/XplorerGltfExporter/XplorerGltfExporter.xaml -------------------------------------------------------------------------------- /XbimPlugin.Gltf.IO/XplorerGltfExporter/XplorerGltfExporter.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBimTeam/XbimGltf/HEAD/XbimPlugin.Gltf.IO/XplorerGltfExporter/XplorerGltfExporter.xaml.cs -------------------------------------------------------------------------------- /XbimPlugin.Gltf.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBimTeam/XbimGltf/HEAD/XbimPlugin.Gltf.nuspec -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBimTeam/XbimGltf/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /glTF-CSharp-LoaderLICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBimTeam/XbimGltf/HEAD/glTF-CSharp-LoaderLICENSE.md -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBimTeam/XbimGltf/HEAD/license.md -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBimTeam/XbimGltf/HEAD/nuget.config -------------------------------------------------------------------------------- /xBIM.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xBimTeam/XbimGltf/HEAD/xBIM.ico --------------------------------------------------------------------------------