Initial import of NODEDC BIM Viewer
This commit is contained in:
@@ -0,0 +1,233 @@
|
||||
|
||||
html, body {
|
||||
height: 100%;
|
||||
background: #f2f2f2;
|
||||
touch-action: none;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: 'Roboto', sans-serif;
|
||||
font-size: 14px;
|
||||
line-height: 1.50;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
margin: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
#myViewer {
|
||||
display: flex;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
align-items: stretch;
|
||||
z-index: 10000;
|
||||
/*overflow: hidden;*/
|
||||
position: absolute;
|
||||
left: 0;
|
||||
right: 0;
|
||||
--left: 0;
|
||||
--right: 0;
|
||||
transition: all 300ms ease-in-out;
|
||||
}
|
||||
|
||||
#myToolbar {
|
||||
min-width: 400px;
|
||||
top: 0;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 0;
|
||||
z-index: 100000;
|
||||
pointer-events: none;
|
||||
position: fixed;
|
||||
left: 95px;
|
||||
transition: all 300ms ease-in-out;
|
||||
}
|
||||
|
||||
#myCanvas {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: #f2f2f2;
|
||||
cursor: default;
|
||||
pointer-events: all;
|
||||
margin: 0;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
#myNavCubeCanvas {
|
||||
position: absolute;
|
||||
width: 200px;
|
||||
height: 200px;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
z-index: 200000;
|
||||
}
|
||||
|
||||
#myExplorer {
|
||||
position: fixed;
|
||||
height: 100%;
|
||||
color: #fff;
|
||||
background: #03103F;
|
||||
overflow: auto;
|
||||
border-right: 2px solid #212529;
|
||||
padding: 0px;
|
||||
padding-bottom: 100px;
|
||||
padding-left: 15px;
|
||||
user-select: none;
|
||||
top: 0;
|
||||
left: -460px;
|
||||
z-index: 10;
|
||||
width: 460px;
|
||||
transition: all 300ms ease-in-out;
|
||||
}
|
||||
|
||||
#explorer_toggle {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.explorer_toggle_label {
|
||||
position: absolute;
|
||||
top: 10px;
|
||||
left: 20px;
|
||||
-webkit-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
flex: 1 1 auto;
|
||||
color: #03103F;
|
||||
background-color: white;
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
border: 2px solid #1d2453;
|
||||
padding: .375rem .75rem;
|
||||
border-radius: .25rem;
|
||||
-webkit-appearance: button;
|
||||
overflow: visible;
|
||||
margin: 0 2px 0 0;
|
||||
box-sizing: border-box;
|
||||
align-items: flex-start;
|
||||
pointer-events: all;
|
||||
z-index: 100000;
|
||||
transition: all 300ms ease-in-out;
|
||||
}
|
||||
|
||||
.explorer_toggle_label:hover {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
#explorer_toggle:checked + .explorer_toggle_label {
|
||||
left: 480px;
|
||||
color: #fff;
|
||||
background-color: #03103F;
|
||||
border-color: #03103F;
|
||||
}
|
||||
|
||||
#explorer_toggle:checked ~ #myExplorer {
|
||||
left: 0;
|
||||
}
|
||||
|
||||
#explorer_toggle:checked ~ #myViewer {
|
||||
left: 460px;
|
||||
--left: 460;
|
||||
width: calc(100% - (var(--left) + var(--right)));
|
||||
}
|
||||
|
||||
#explorer_toggle:checked ~ #myToolbar {
|
||||
left: 555px;
|
||||
}
|
||||
|
||||
#explorer_toggle:not(:checked) + .explorer_toggle_label {
|
||||
left: 20px;
|
||||
color: #fff;
|
||||
background-color: #03103F;
|
||||
border-color: #03103F;
|
||||
}
|
||||
|
||||
#explorer_toggle:not(:checked) ~ #myExplorer {
|
||||
left: -460px;
|
||||
}
|
||||
|
||||
#explorer_toggle:not(:checked) ~ #myViewer {
|
||||
left: 0;
|
||||
--left: 0;
|
||||
width: calc(100% - var(--right));
|
||||
}
|
||||
|
||||
#explorer_toggle:not(:checked) ~ #myToolbar {
|
||||
left: 95px;
|
||||
}
|
||||
|
||||
#myInspector {
|
||||
position: absolute;
|
||||
height: 100%;
|
||||
color: #fff;
|
||||
background: #03103F;
|
||||
overflow: auto;
|
||||
border-left: 2px solid #212529;
|
||||
padding: 0;
|
||||
top: 0;
|
||||
right: -360px;
|
||||
z-index: 40;
|
||||
width: 358px;
|
||||
transition: all 300ms ease-in-out;
|
||||
}
|
||||
|
||||
#inspector_toggle {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.inspector_toggle_label {
|
||||
position: absolute;
|
||||
top: 10px;
|
||||
right: 20px;
|
||||
-webkit-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
flex: 1 1 auto;
|
||||
color: #03103F;
|
||||
background-color: white;
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
border: 2px solid #1d2453;
|
||||
padding: .375rem .75rem; /* FIXME */
|
||||
border-radius: .25rem;
|
||||
-webkit-appearance: button;
|
||||
overflow: visible;
|
||||
margin: 0 2px 0 0; /* FIXME */
|
||||
box-sizing: border-box;
|
||||
align-items: flex-start;
|
||||
pointer-events: all;
|
||||
z-index: 100000;
|
||||
transition: all 300ms ease-in-out;
|
||||
}
|
||||
|
||||
.inspector_toggle_label:hover {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
#inspector_toggle:checked + .inspector_toggle_label {
|
||||
right: 380px;
|
||||
color: #fff;
|
||||
background-color: #03103F;
|
||||
border-color: #03103F;
|
||||
}
|
||||
|
||||
#inspector_toggle:checked ~ #myViewer {
|
||||
--right: 360;
|
||||
right:360px;
|
||||
width: calc(100% - (var(--left) + var(--right)));
|
||||
}
|
||||
|
||||
#inspector_toggle:checked ~ #myInspector {
|
||||
right: 0;
|
||||
--right: 0;
|
||||
}
|
||||
|
||||
#inspector_toggle:not(:checked) ~ #myInspector {
|
||||
right: -380px;
|
||||
--right: -380px;
|
||||
}
|
||||
|
||||
#inspector_toggle:not(:checked) ~ #myViewer {
|
||||
--right: 0;
|
||||
right: 0;
|
||||
width: calc(100% - var(--left));
|
||||
}
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"id": "Archicad",
|
||||
"name": "Archicad Demos",
|
||||
"created": "Wed, 14 Jun 2017 07:00:00 GMT",
|
||||
"models": [
|
||||
{
|
||||
"id": "AR-Demo_Sample_Single_Building_01",
|
||||
"name": "AR-Demo_Sample_Single_Building_01"
|
||||
},
|
||||
{
|
||||
"id": "ME-Demo_Sample_Single_Building_01",
|
||||
"name": "ME-Demo_Sample_Single_Building_01"
|
||||
},
|
||||
{
|
||||
"id": "ST-Demo_Sample_Single_Building_01",
|
||||
"name": "ST-Demo_Sample_Single_Building_01"
|
||||
}
|
||||
],
|
||||
"viewerConfigs": {},
|
||||
"viewerContent": {},
|
||||
"viewerState": {}
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,44 @@
|
||||
{
|
||||
"id": "Clinic",
|
||||
"name": "Clinic",
|
||||
"created": "Wed, 14 Jun 2017 07:00:00 GMT",
|
||||
"models": [
|
||||
{
|
||||
"id": "architectural",
|
||||
"name": "Clinic Architecture",
|
||||
"manifest": "manifest.json"
|
||||
},
|
||||
{
|
||||
"id": "electrical",
|
||||
"name": "Clinic Electrical",
|
||||
"manifest": "manifest.json"
|
||||
},
|
||||
{
|
||||
"id": "hvac",
|
||||
"name": "Clinic HVAC",
|
||||
"manifest": "manifest.json"
|
||||
},
|
||||
{
|
||||
"id": "plumbing",
|
||||
"name": "Clinic Plumbing",
|
||||
"manifest": "manifest.json"
|
||||
},
|
||||
{
|
||||
"id": "structural",
|
||||
"name": "Clinic Structure",
|
||||
"manifest": "manifest.json",
|
||||
"xrayed": true
|
||||
}
|
||||
],
|
||||
"viewerConfigs": {},
|
||||
"viewerContent": {
|
||||
"modelsLoaded": [
|
||||
"architectural",
|
||||
"electrical",
|
||||
"hvac",
|
||||
"plumbing",
|
||||
"structural"
|
||||
]
|
||||
},
|
||||
"viewerState": {}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
{"inputFile":"results/Clinic/Clinic_Architectural/ifcCXConverterPipeline1/model.glb.manifest.json","converterApplication":"convert2xkt","converterApplicationVersion":"v1.1.11","conversionDate":"19-12-2023- 17-11-13","outputDir":"results/Clinic/Clinic_Architectural/ifcCXConverterPipeline1/","xktFiles":["model.xkt"]}
|
||||
Binary file not shown.
@@ -0,0 +1 @@
|
||||
{"inputFile":"results/Clinic/Clinic_Electrical/ifcCXConverterPipeline1/model.glb.manifest.json","converterApplication":"convert2xkt","converterApplicationVersion":"v1.1.11","conversionDate":"19-12-2023- 17-11-17","outputDir":"results/Clinic/Clinic_Electrical/ifcCXConverterPipeline1/","xktFiles":["model.xkt"]}
|
||||
Binary file not shown.
@@ -0,0 +1 @@
|
||||
{"inputFile":"results/Clinic/Clinic_HVAC/ifcCXConverterPipeline1/model.glb.manifest.json","converterApplication":"convert2xkt","converterApplicationVersion":"v1.1.11","conversionDate":"19-12-2023- 17-11-25","outputDir":"results/Clinic/Clinic_HVAC/ifcCXConverterPipeline1/","xktFiles":["model.xkt"]}
|
||||
Binary file not shown.
@@ -0,0 +1,83 @@
|
||||
#----------------------------------------------------------------------------
|
||||
# CxConverter IFC Conversion Pipeline Log
|
||||
#
|
||||
# Converting file: Clinic_Plumbing.ifc
|
||||
# Using tools: ifc2gltf and convert2xkt
|
||||
# Date: Tue Dec 19 2023 17:07:32 GMT+0100 (Central European Standard Time)
|
||||
#----------------------------------------------------------------------------
|
||||
|
||||
|
||||
|
||||
# ~/xeolabs/xeokit/ifc2gltf/3_0_6/ifc2gltfcxconverter-3.0.6/linux/bin/ifc2gltfcxconverter -i /home/lindsay/xeolabs/xeokit-model-conversion-tests-sep8/inputFiles/Clinic/Clinic_Plumbing.ifc -o /home/lindsay/xeolabs/xeokit-model-conversion-tests-sep8/results/Clinic/Clinic_Plumbing/ifcCXConverterPipeline1/model.glb -m /home/lindsay/xeolabs/xeokit-model-conversion-tests-sep8/results/Clinic/Clinic_Plumbing/ifcCXConverterPipeline1/model.json -s 10 -e 3 >> /home/lindsay/xeolabs/xeokit-model-conversion-tests-sep8/results/Clinic/Clinic_Plumbing/ifcCXConverterPipeline1/log.txt
|
||||
|
||||
__ IFC to GLTF converter __ version: 3.0.6 ____________
|
||||
Loading file "/home/lindsay/xe...Clinic_Plumbing.ifc"␍Loading file "/home/lindsay/xe...Clinic_Plumbing.ifc": 5%␍Loading file "/home/lindsay/xe...Clinic_Plumbing.ifc": 6%␍Loading file "/home/lindsay/xe...Clinic_Plumbing.ifc": 7%␍Loading file "/home/lindsay/xe...Clinic_Plumbing.ifc": 8%␍Loading file "/home/lindsay/xe...Clinic_Plumbing.ifc": 9%␍Loading file "/home/lindsay/xe...Clinic_Plumbing.ifc": 10%␍Loading file "/home/lindsay/xe...Clinic_Plumbing.ifc": 11%␍Loading file "/home/lindsay/xe...Clinic_Plumbing.ifc": 12%␍Loading file "/home/lindsay/xe...Clinic_Plumbing.ifc": 13%␍Loading file "/home/lindsay/xe...Clinic_Plumbing.ifc": 14%␍Loading file "/home/lindsay/xe...Clinic_Plumbing.ifc": 15%␍Loading file "/home/lindsay/xe...Clinic_Plumbing.ifc": 16%␍Loading file "/home/lindsay/xe...Clinic_Plumbing.ifc": 17%␍Loading file "/home/lindsay/xe...Clinic_Plumbing.ifc": 18%␍Loading file "/home/lindsay/xe...Clinic_Plumbing.ifc": 19%␍Loading file "/home/lindsay/xe...Clinic_Plumbing.ifc": 20%␍Loading file "/home/lindsay/xe...Clinic_Plumbing.ifc": 21%␍Loading file "/home/lindsay/xe...Clinic_Plumbing.ifc": 22%␍Loading file "/home/lindsay/xe...Clinic_Plumbing.ifc": 23%␍Loading file "/home/lindsay/xe...Clinic_Plumbing.ifc": 24%␍Loading file "/home/lindsay/xe...Clinic_Plumbing.ifc": 30%␍Loading file "/home/lindsay/xe...Clinic_Plumbing.ifc": 33%␍Loading file "/home/lindsay/xe...Clinic_Plumbing.ifc": 36%␍Loading file "/home/lindsay/xe...Clinic_Plumbing.ifc": 39%␍Loading file "/home/lindsay/xe...Clinic_Plumbing.ifc": 42%␍Loading file "/home/lindsay/xe...Clinic_Plumbing.ifc": 45%␍Loading file "/home/lindsay/xe...Clinic_Plumbing.ifc": 48%␍Loading file "/home/lindsay/xe...Clinic_Plumbing.ifc": 51%␍Loading file "/home/lindsay/xe...Clinic_Plumbing.ifc": 54%␍Loading file "/home/lindsay/xe...Clinic_Plumbing.ifc": 57%␍Loading file "/home/lindsay/xe...Clinic_Plumbing.ifc": 60%␍Loading file "/home/lindsay/xe...Clinic_Plumbing.ifc": 63%␍Loading file "/home/lindsay/xe...Clinic_Plumbing.ifc": 66%␍Loading file "/home/lindsay/xe...Clinic_Plumbing.ifc": 69%␍Loading file "/home/lindsay/xe...Clinic_Plumbing.ifc": 72%␍Loading file "/home/lindsay/xe...Clinic_Plumbing.ifc": 75%␍Loading file "/home/lindsay/xe...Clinic_Plumbing.ifc": 78%␍Loading file "/home/lindsay/xe...Clinic_Plumbing.ifc": 81%␍Loading file "/home/lindsay/xe...Clinic_Plumbing.ifc": 84%␍Loading file "/home/lindsay/xe...Clinic_Plumbing.ifc": 87%␍Loading file "/home/lindsay/xe...Clinic_Plumbing.ifc": 100%
|
||||
Converting IFC geometry␍Converting IFC geometry: 0%␍Converting IFC geometry: 0%␍Converting IFC geometry: 1%␍Converting IFC geometry: 2%␍Converting IFC geometry: 3%␍Converting IFC geometry: 4%␍Converting IFC geometry: 5%␍Converting IFC geometry: 6%␍Converting IFC geometry: 7%␍Converting IFC geometry: 8%␍Converting IFC geometry: 9%␍Converting IFC geometry: 9%␍Converting IFC geometry: 10%␍Converting IFC geometry: 11%␍Converting IFC geometry: 12%␍Converting IFC geometry: 13%␍Converting IFC geometry: 14%␍Converting IFC geometry: 15%␍Converting IFC geometry: 16%␍Converting IFC geometry: 17%␍Converting IFC geometry: 18%␍Converting IFC geometry: 18%␍Converting IFC geometry: 19%␍Converting IFC geometry: 20%␍Converting IFC geometry: 21%␍Converting IFC geometry: 22%␍Converting IFC geometry: 23%␍Converting IFC geometry: 24%␍Converting IFC geometry: 25%␍Converting IFC geometry: 26%␍Converting IFC geometry: 27%␍Converting IFC geometry: 27%␍Converting IFC geometry: 28%␍Converting IFC geometry: 29%␍Converting IFC geometry: 30%␍Converting IFC geometry: 31%␍Converting IFC geometry: 32%␍Converting IFC geometry: 33%␍Converting IFC geometry: 34%␍Converting IFC geometry: 35%␍Converting IFC geometry: 36%␍Converting IFC geometry: 36%␍Converting IFC geometry: 37%␍Converting IFC geometry: 38%␍Converting IFC geometry: 39%␍Converting IFC geometry: 40%␍Converting IFC geometry: 41%␍Converting IFC geometry: 42%␍Converting IFC geometry: 43%␍Converting IFC geometry: 44%␍Converting IFC geometry: 45%␍Converting IFC geometry: 46%␍Converting IFC geometry: 46%␍Converting IFC geometry: 47%␍Converting IFC geometry: 48%␍Converting IFC geometry: 49%␍Converting IFC geometry: 50%␍Converting IFC geometry: 51%␍Converting IFC geometry: 52%␍Converting IFC geometry: 53%␍Converting IFC geometry: 54%␍Converting IFC geometry: 55%␍Converting IFC geometry: 55%␍Converting IFC geometry: 56%␍Converting IFC geometry: 57%␍Converting IFC geometry: 58%␍Converting IFC geometry: 59%␍Converting IFC geometry: 60%␍Converting IFC geometry: 61%␍Converting IFC geometry: 62%␍Converting IFC geometry: 63%␍Converting IFC geometry: 64%␍Converting IFC geometry: 64%␍Converting IFC geometry: 65%␍Converting IFC geometry: 66%␍Converting IFC geometry: 67%␍Converting IFC geometry: 68%␍Converting IFC geometry: 69%␍Converting IFC geometry: 70%␍Converting IFC geometry: 71%␍Converting IFC geometry: 72%␍Converting IFC geometry: 73%␍Converting IFC geometry: 73%␍Converting IFC geometry: 74%␍Converting IFC geometry: 75%␍Converting IFC geometry: 76%␍Converting IFC geometry: 77%␍Converting IFC geometry: 78%␍Converting IFC geometry: 79%␍Converting IFC geometry: 80%␍Converting IFC geometry: 81%␍Converting IFC geometry: 82%␍Converting IFC geometry: 83%␍Converting IFC geometry: 83%␍Converting IFC geometry: 84%␍Converting IFC geometry: 85%␍Converting IFC geometry: 86%␍Converting IFC geometry: 87%␍Converting IFC geometry: 88%␍Converting IFC geometry: 89%␍Converting IFC geometry: 100%
|
||||
Exporting to gltf␍Exporting to gltf: 50%␍Exporting to gltf: 51%␍Exporting to gltf: 53%␍Exporting to gltf: 54%␍Exporting to gltf: 56%␍Exporting to gltf: 57%␍Exporting to gltf: 59%␍Exporting to gltf: 60%␍Exporting to gltf: 100%
|
||||
Accessors: 2542, reused: 7780
|
||||
Exporting meta data␍Exporting meta data: 75%␍Exporting meta data: 76%␍Exporting meta data: 78%␍Exporting meta data: 79%␍Exporting meta data: 81%␍Exporting meta data: 82%␍Exporting meta data: 84%␍Exporting meta data: 85%␍Exporting meta data: 87%␍Exporting meta data: 88%␍Exporting meta data: 90%␍Exporting meta data: 91%␍Exporting meta data: 93%␍Exporting meta data: 94%␍Exporting meta data: 100%␍Exporting meta data: 50%␍Exporting meta data: 51%␍Exporting meta data: 53%␍Exporting meta data: 54%␍Exporting meta data: 56%␍Exporting meta data: 57%␍Exporting meta data: 59%␍Exporting meta data: 60%␍Exporting meta data: 62%␍Exporting meta data: 63%␍Exporting meta data: 100%
|
||||
Accessors: 1295, reused: 2267
|
||||
Exporting meta data␍Exporting meta data: 75%␍Exporting meta data: 76%␍Exporting meta data: 78%␍Exporting meta data: 79%␍Exporting meta data: 81%␍Exporting meta data: 82%␍Exporting meta data: 84%␍Exporting meta data: 85%␍Exporting meta data: 87%␍Exporting meta data: 88%␍Exporting meta data: 90%␍Exporting meta data: 91%␍Exporting meta data: 93%␍Exporting meta data: 94%␍Exporting meta data: 100%
|
||||
done in 15 seconds
|
||||
|
||||
|
||||
|
||||
# node --max-old-space-size=24000 ~/xeolabs/xeokit-convert-aug9/convert2xkt.js -t -n -a results/Clinic/Clinic_Plumbing/ifcCXConverterPipeline1/model.glb.manifest.json -o results/Clinic/Clinic_Plumbing/ifcCXConverterPipeline1/model.xkt.manifest.json -l >> /home/lindsay/xeolabs/xeokit-model-conversion-tests-sep8/results/Clinic/Clinic_Plumbing/ifcCXConverterPipeline1/log.txt
|
||||
[convert2xkt] Running convert2xkt v1.1.11...
|
||||
[convert2xkt] Converting glTF files in manifest results/Clinic/Clinic_Plumbing/ifcCXConverterPipeline1/model.glb.manifest.json...
|
||||
[convert2xkt] Reading input file: /home/lindsay/xeolabs/xeokit-model-conversion-tests-sep8/results/Clinic/Clinic_Plumbing/ifcCXConverterPipeline1/model.glb
|
||||
[convert2xkt] Input file size: 12540.39 kB
|
||||
[convert2xkt] Reading input metadata file: /home/lindsay/xeolabs/xeokit-model-conversion-tests-sep8/results/Clinic/Clinic_Plumbing/ifcCXConverterPipeline1/model.json
|
||||
[convert2xkt] Using parser: parseGLTFIntoXKTModel
|
||||
[convert2xkt] Parsing normals: enabled
|
||||
[convert2xkt] Parsing textures: enabled
|
||||
[convert2xkt] Input file parsed OK. Building XKT document...
|
||||
[convert2xkt] XKT document built OK. Writing to XKT file...
|
||||
[convert2xkt] Converted to: XKT v10
|
||||
[convert2xkt] XKT size: 7690.77 kB
|
||||
[convert2xkt] XKT textures size: 0.01kB
|
||||
[convert2xkt] Compression ratio: 1.63
|
||||
[convert2xkt] Conversion time: 11.21 s
|
||||
[convert2xkt] Converted metaobjects: 0
|
||||
[convert2xkt] Converted property sets: 0
|
||||
[convert2xkt] Converted drawable objects: 4910
|
||||
[convert2xkt] Converted geometries: 7888
|
||||
[convert2xkt] Converted textures: 0
|
||||
[convert2xkt] Converted textureSets: 0
|
||||
[convert2xkt] Converted triangles: 1556454
|
||||
[convert2xkt] Converted vertices: 4669362
|
||||
[convert2xkt] Converted UVs: 0
|
||||
[convert2xkt] Converted normals: 0
|
||||
[convert2xkt] Number of tiles: 1
|
||||
[convert2xkt] minTileSize: 500
|
||||
[convert2xkt] Writing XKT file: results/Clinic/Clinic_Plumbing/ifcCXConverterPipeline1/model.xkt
|
||||
[convert2xkt] Converted model1.xkt (1 of 2)
|
||||
[convert2xkt] Reading input file: /home/lindsay/xeolabs/xeokit-model-conversion-tests-sep8/results/Clinic/Clinic_Plumbing/ifcCXConverterPipeline1/model_1.glb
|
||||
[convert2xkt] Input file size: 7228.72 kB
|
||||
[convert2xkt] Reading input metadata file: /home/lindsay/xeolabs/xeokit-model-conversion-tests-sep8/results/Clinic/Clinic_Plumbing/ifcCXConverterPipeline1/model_1.json
|
||||
[convert2xkt] Using parser: parseGLTFIntoXKTModel
|
||||
[convert2xkt] Parsing normals: enabled
|
||||
[convert2xkt] Parsing textures: enabled
|
||||
[convert2xkt] Input file parsed OK. Building XKT document...
|
||||
[convert2xkt] XKT document built OK. Writing to XKT file...
|
||||
[convert2xkt] Converted to: XKT v10
|
||||
[convert2xkt] XKT size: 11793.23 kB
|
||||
[convert2xkt] XKT textures size: 0.01kB
|
||||
[convert2xkt] Compression ratio: 0.61
|
||||
[convert2xkt] Conversion time: 13.11 s
|
||||
[convert2xkt] Converted metaobjects: 0
|
||||
[convert2xkt] Converted property sets: 0
|
||||
[convert2xkt] Converted drawable objects: 1676
|
||||
[convert2xkt] Converted geometries: 2315
|
||||
[convert2xkt] Converted textures: 0
|
||||
[convert2xkt] Converted textureSets: 0
|
||||
[convert2xkt] Converted triangles: 1656535
|
||||
[convert2xkt] Converted vertices: 4969605
|
||||
[convert2xkt] Converted UVs: 0
|
||||
[convert2xkt] Converted normals: 0
|
||||
[convert2xkt] Number of tiles: 1
|
||||
[convert2xkt] minTileSize: 500
|
||||
[convert2xkt] Writing XKT file: results/Clinic/Clinic_Plumbing/ifcCXConverterPipeline1/model_1.xkt
|
||||
[convert2xkt] Converted model2.xkt (2 of 2)
|
||||
[convert2xkt] Done.
|
||||
node --max-old-space-size=24000 ~/xeolabs/xeokit-convert-aug9/convert2xkt.js -t -n -a results/Clinic/Clinic_Plumbing/ifcCXConverterPipeline1/model.glb.manifest.json -o results/Clinic/Clinic_Plumbing/ifcCXConverterPipeline1/model.xkt.manifest.json -l >> /home/lindsay/xeolabs/xeokit-model-conversion-tests-sep8/results/Clinic/Clinic_Plumbing/ifcCXConverterPipeline1/log.txt
|
||||
@@ -0,0 +1 @@
|
||||
{"inputFile":"results/Clinic/Clinic_Plumbing/ifcCXConverterPipeline1/model.glb.manifest.json","converterApplication":"convert2xkt","converterApplicationVersion":"v1.1.11","conversionDate":"19-12-2023- 17-12-47","outputDir":"results/Clinic/Clinic_Plumbing/ifcCXConverterPipeline1/","xktFiles":["model.xkt","model_1.xkt"]}
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1 @@
|
||||
{"inputFile":"results/Clinic/Clinic_Structural/ifcCXConverterPipeline1/model.glb.manifest.json","converterApplication":"convert2xkt","converterApplicationVersion":"v1.1.11","conversionDate":"19-12-2023- 17-13-19","outputDir":"results/Clinic/Clinic_Structural/ifcCXConverterPipeline1/","xktFiles":["model.xkt"]}
|
||||
Binary file not shown.
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"id": "duplex",
|
||||
"name": "Duplex",
|
||||
"models": [
|
||||
{
|
||||
"id": "design",
|
||||
"name": "Duplex Design"
|
||||
},
|
||||
{
|
||||
"id": "mep",
|
||||
"name": "Duplex MEP"
|
||||
}
|
||||
],
|
||||
"viewerConfigs": {
|
||||
},
|
||||
"viewerContent": {
|
||||
"modelsLoaded": [
|
||||
"design",
|
||||
"mep"
|
||||
]
|
||||
},
|
||||
"viewerState": {
|
||||
"tabOpen": "classes",
|
||||
"expandObjectsTree": 1,
|
||||
"expandClassesTree": 1,
|
||||
"expandStoreysTree": 1
|
||||
}
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,32 @@
|
||||
{
|
||||
"id": "holterTower",
|
||||
"name": "HolterTower",
|
||||
"models": [
|
||||
{
|
||||
"id": "ifcCXConverterPipeline1",
|
||||
"name": "Holter Tower",
|
||||
"backfaces": false,
|
||||
"manifest": "manifest.json"
|
||||
}
|
||||
],
|
||||
"viewerConfigs": {
|
||||
"backgroundColor": [
|
||||
0.95,
|
||||
0.95,
|
||||
1.0
|
||||
]
|
||||
},
|
||||
"viewerContent": {
|
||||
"modelsLoaded": [
|
||||
"ifcCXConverterPipeline1"
|
||||
]
|
||||
},
|
||||
"viewerState": {
|
||||
"tabOpen": "classes",
|
||||
"expandObjectsTree": 3,
|
||||
"expandClassesTree": 1,
|
||||
"expandStoreysTree": 1,
|
||||
"saoEnabled": "true",
|
||||
"objectColorSource": "viewer"
|
||||
}
|
||||
}
|
||||
Binary file not shown.
@@ -0,0 +1,83 @@
|
||||
#----------------------------------------------------------------------------
|
||||
# CxConverter IFC Conversion Pipeline Log
|
||||
#
|
||||
# Converting file: Holter_Tower_10.ifc
|
||||
# Using tools: ifc2gltf and convert2xkt
|
||||
# Date: Tue Dec 19 2023 15:11:52 GMT+0100 (Central European Standard Time)
|
||||
#----------------------------------------------------------------------------
|
||||
|
||||
|
||||
|
||||
# ~/xeolabs/xeokit/ifc2gltf/3_0_6/ifc2gltfcxconverter-3.0.6/linux/bin/ifc2gltfcxconverter -i /home/lindsay/xeolabs/xeokit-model-conversion-tests-sep8/inputFiles/HolterTower/Holter_Tower_10.ifc -o /home/lindsay/xeolabs/xeokit-model-conversion-tests-sep8/results/HolterTower/Holter_Tower_10/ifcCXConverterPipeline1/model.glb -m /home/lindsay/xeolabs/xeokit-model-conversion-tests-sep8/results/HolterTower/Holter_Tower_10/ifcCXConverterPipeline1/model.json -s 10 -e 3 >> /home/lindsay/xeolabs/xeokit-model-conversion-tests-sep8/results/HolterTower/Holter_Tower_10/ifcCXConverterPipeline1/log.txt
|
||||
|
||||
__ IFC to GLTF converter __ version: 3.0.6 ____________
|
||||
Loading file "/home/lindsay/xe...Holter_Tower_10.ifc"␍Loading file "/home/lindsay/xe...Holter_Tower_10.ifc": 5%␍Loading file "/home/lindsay/xe...Holter_Tower_10.ifc": 6%␍Loading file "/home/lindsay/xe...Holter_Tower_10.ifc": 7%␍Loading file "/home/lindsay/xe...Holter_Tower_10.ifc": 8%␍Loading file "/home/lindsay/xe...Holter_Tower_10.ifc": 9%␍Loading file "/home/lindsay/xe...Holter_Tower_10.ifc": 10%␍Loading file "/home/lindsay/xe...Holter_Tower_10.ifc": 11%␍Loading file "/home/lindsay/xe...Holter_Tower_10.ifc": 12%␍Loading file "/home/lindsay/xe...Holter_Tower_10.ifc": 13%␍Loading file "/home/lindsay/xe...Holter_Tower_10.ifc": 14%␍Loading file "/home/lindsay/xe...Holter_Tower_10.ifc": 15%␍Loading file "/home/lindsay/xe...Holter_Tower_10.ifc": 16%␍Loading file "/home/lindsay/xe...Holter_Tower_10.ifc": 17%␍Loading file "/home/lindsay/xe...Holter_Tower_10.ifc": 18%␍Loading file "/home/lindsay/xe...Holter_Tower_10.ifc": 19%␍Loading file "/home/lindsay/xe...Holter_Tower_10.ifc": 20%␍Loading file "/home/lindsay/xe...Holter_Tower_10.ifc": 21%␍Loading file "/home/lindsay/xe...Holter_Tower_10.ifc": 22%␍Loading file "/home/lindsay/xe...Holter_Tower_10.ifc": 23%␍Loading file "/home/lindsay/xe...Holter_Tower_10.ifc": 24%␍Loading file "/home/lindsay/xe...Holter_Tower_10.ifc": 30%␍Loading file "/home/lindsay/xe...Holter_Tower_10.ifc": 33%␍Loading file "/home/lindsay/xe...Holter_Tower_10.ifc": 36%␍Loading file "/home/lindsay/xe...Holter_Tower_10.ifc": 39%␍Loading file "/home/lindsay/xe...Holter_Tower_10.ifc": 42%␍Loading file "/home/lindsay/xe...Holter_Tower_10.ifc": 45%␍Loading file "/home/lindsay/xe...Holter_Tower_10.ifc": 48%␍Loading file "/home/lindsay/xe...Holter_Tower_10.ifc": 51%␍Loading file "/home/lindsay/xe...Holter_Tower_10.ifc": 54%␍Loading file "/home/lindsay/xe...Holter_Tower_10.ifc": 57%␍Loading file "/home/lindsay/xe...Holter_Tower_10.ifc": 60%␍Loading file "/home/lindsay/xe...Holter_Tower_10.ifc": 63%␍Loading file "/home/lindsay/xe...Holter_Tower_10.ifc": 66%␍Loading file "/home/lindsay/xe...Holter_Tower_10.ifc": 69%␍Loading file "/home/lindsay/xe...Holter_Tower_10.ifc": 72%␍Loading file "/home/lindsay/xe...Holter_Tower_10.ifc": 75%␍Loading file "/home/lindsay/xe...Holter_Tower_10.ifc": 78%␍Loading file "/home/lindsay/xe...Holter_Tower_10.ifc": 81%␍Loading file "/home/lindsay/xe...Holter_Tower_10.ifc": 84%␍Loading file "/home/lindsay/xe...Holter_Tower_10.ifc": 87%␍Loading file "/home/lindsay/xe...Holter_Tower_10.ifc": 100%
|
||||
Converting IFC geometry␍Converting IFC geometry: 0%␍Converting IFC geometry: 0%␍Converting IFC geometry: 1%␍Converting IFC geometry: 2%␍Converting IFC geometry: 3%␍Converting IFC geometry: 4%␍Converting IFC geometry: 5%␍Converting IFC geometry: 6%␍Converting IFC geometry: 7%␍Converting IFC geometry: 8%␍Converting IFC geometry: 9%␍Converting IFC geometry: 9%␍Converting IFC geometry: 10%␍Converting IFC geometry: 11%␍Converting IFC geometry: 12%␍Converting IFC geometry: 13%␍Converting IFC geometry: 14%␍Converting IFC geometry: 15%␍Converting IFC geometry: 16%␍Converting IFC geometry: 17%␍Converting IFC geometry: 18%␍Converting IFC geometry: 18%␍Converting IFC geometry: 19%␍Converting IFC geometry: 20%␍Converting IFC geometry: 21%␍Converting IFC geometry: 22%␍Converting IFC geometry: 23%␍Converting IFC geometry: 24%␍Converting IFC geometry: 25%␍Converting IFC geometry: 26%␍Converting IFC geometry: 27%␍Converting IFC geometry: 27%␍Converting IFC geometry: 28%␍Converting IFC geometry: 29%␍Converting IFC geometry: 30%␍Converting IFC geometry: 31%␍Converting IFC geometry: 32%␍Converting IFC geometry: 33%␍Converting IFC geometry: 34%␍Converting IFC geometry: 35%␍Converting IFC geometry: 36%␍Converting IFC geometry: 36%␍Converting IFC geometry: 37%␍Converting IFC geometry: 38%␍Converting IFC geometry: 39%␍Converting IFC geometry: 40%␍Converting IFC geometry: 41%␍Converting IFC geometry: 42%␍Converting IFC geometry: 43%␍Converting IFC geometry: 44%␍Converting IFC geometry: 45%␍Converting IFC geometry: 45%␍Converting IFC geometry: 46%␍Converting IFC geometry: 47%␍Converting IFC geometry: 48%␍Converting IFC geometry: 49%␍Converting IFC geometry: 50%␍Converting IFC geometry: 51%␍Converting IFC geometry: 52%␍Converting IFC geometry: 53%␍Converting IFC geometry: 54%␍Converting IFC geometry: 54%␍Converting IFC geometry: 55%␍Converting IFC geometry: 56%␍Converting IFC geometry: 57%␍Converting IFC geometry: 58%␍Converting IFC geometry: 59%␍Converting IFC geometry: 60%␍Converting IFC geometry: 61%␍Converting IFC geometry: 62%␍Converting IFC geometry: 63%␍Converting IFC geometry: 63%␍Converting IFC geometry: 64%␍Converting IFC geometry: 65%␍Converting IFC geometry: 66%␍Converting IFC geometry: 67%␍Converting IFC geometry: 68%␍Converting IFC geometry: 69%␍Converting IFC geometry: 70%␍Converting IFC geometry: 71%␍Converting IFC geometry: 72%␍Converting IFC geometry: 72%␍Converting IFC geometry: 73%␍Converting IFC geometry: 74%␍Converting IFC geometry: 75%␍Converting IFC geometry: 76%␍Converting IFC geometry: 77%␍Converting IFC geometry: 78%␍Converting IFC geometry: 79%␍Converting IFC geometry: 80%␍Converting IFC geometry: 81%␍Converting IFC geometry: 82%␍Converting IFC geometry: 82%␍Converting IFC geometry: 83%␍Converting IFC geometry: 84%␍Converting IFC geometry: 85%␍Converting IFC geometry: 86%␍Converting IFC geometry: 87%␍Converting IFC geometry: 88%␍Converting IFC geometry: 89%␍Converting IFC geometry: 100%
|
||||
Exporting to gltf␍Exporting to gltf: 50%␍Exporting to gltf: 100%
|
||||
Accessors: 13, reused: 7
|
||||
Exporting meta data␍Exporting meta data: 75%␍Exporting meta data: 81%␍Exporting meta data: 88%␍Exporting meta data: 100%␍Exporting meta data: 50%␍Exporting meta data: 51%␍Exporting meta data: 53%␍Exporting meta data: 54%␍Exporting meta data: 56%␍Exporting meta data: 57%␍Exporting meta data: 59%␍Exporting meta data: 60%␍Exporting meta data: 62%␍Exporting meta data: 63%␍Exporting meta data: 65%␍Exporting meta data: 66%␍Exporting meta data: 68%␍Exporting meta data: 69%␍Exporting meta data: 71%␍Exporting meta data: 72%␍Exporting meta data: 74%␍Exporting meta data: 75%␍Exporting meta data: 77%␍Exporting meta data: 78%␍Exporting meta data: 80%␍Exporting meta data: 81%␍Exporting meta data: 83%␍Exporting meta data: 84%␍Exporting meta data: 86%␍Exporting meta data: 87%␍Exporting meta data: 89%␍Exporting meta data: 90%␍Exporting meta data: 92%␍Exporting meta data: 93%␍Exporting meta data: 100%
|
||||
Accessors: 35599, reused: 108376
|
||||
Exporting meta data␍Exporting meta data: 75%␍Exporting meta data: 76%␍Exporting meta data: 78%␍Exporting meta data: 79%␍Exporting meta data: 81%␍Exporting meta data: 82%␍Exporting meta data: 84%␍Exporting meta data: 85%␍Exporting meta data: 87%␍Exporting meta data: 88%␍Exporting meta data: 90%␍Exporting meta data: 91%␍Exporting meta data: 93%␍Exporting meta data: 94%␍Exporting meta data: 100%
|
||||
done in 79 seconds
|
||||
|
||||
|
||||
|
||||
# node --max-old-space-size=24000 ~/xeolabs/xeokit-convert-aug9/convert2xkt.js -t -n -a results/HolterTower/Holter_Tower_10/ifcCXConverterPipeline1/model.glb.manifest.json -o results/HolterTower/Holter_Tower_10/ifcCXConverterPipeline1/model.xkt.manifest.json -l >> /home/lindsay/xeolabs/xeokit-model-conversion-tests-sep8/results/HolterTower/Holter_Tower_10/ifcCXConverterPipeline1/log.txt
|
||||
[convert2xkt] Running convert2xkt v1.1.11...
|
||||
[convert2xkt] Converting glTF files in manifest results/HolterTower/Holter_Tower_10/ifcCXConverterPipeline1/model.glb.manifest.json...
|
||||
[convert2xkt] Reading input file: /home/lindsay/xeolabs/xeokit-model-conversion-tests-sep8/results/HolterTower/Holter_Tower_10/ifcCXConverterPipeline1/model.glb
|
||||
[convert2xkt] Input file size: 11.43 kB
|
||||
[convert2xkt] Reading input metadata file: /home/lindsay/xeolabs/xeokit-model-conversion-tests-sep8/results/HolterTower/Holter_Tower_10/ifcCXConverterPipeline1/model.json
|
||||
[convert2xkt] Using parser: parseGLTFIntoXKTModel
|
||||
[convert2xkt] Parsing normals: enabled
|
||||
[convert2xkt] Parsing textures: enabled
|
||||
[convert2xkt] Input file parsed OK. Building XKT document...
|
||||
[convert2xkt] XKT document built OK. Writing to XKT file...
|
||||
[convert2xkt] Converted to: XKT v10
|
||||
[convert2xkt] XKT size: 2.41 kB
|
||||
[convert2xkt] XKT textures size: 0.01kB
|
||||
[convert2xkt] Compression ratio: 4.74
|
||||
[convert2xkt] Conversion time: 0.04 s
|
||||
[convert2xkt] Converted metaobjects: 0
|
||||
[convert2xkt] Converted property sets: 0
|
||||
[convert2xkt] Converted drawable objects: 1
|
||||
[convert2xkt] Converted geometries: 10
|
||||
[convert2xkt] Converted textures: 0
|
||||
[convert2xkt] Converted textureSets: 0
|
||||
[convert2xkt] Converted triangles: 176
|
||||
[convert2xkt] Converted vertices: 528
|
||||
[convert2xkt] Converted UVs: 0
|
||||
[convert2xkt] Converted normals: 0
|
||||
[convert2xkt] Number of tiles: 1
|
||||
[convert2xkt] minTileSize: 500
|
||||
[convert2xkt] Writing XKT file: results/HolterTower/Holter_Tower_10/ifcCXConverterPipeline1/model.xkt
|
||||
[convert2xkt] Converted model1.xkt (1 of 2)
|
||||
[convert2xkt] Reading input file: /home/lindsay/xeolabs/xeokit-model-conversion-tests-sep8/results/HolterTower/Holter_Tower_10/ifcCXConverterPipeline1/model_1.glb
|
||||
[convert2xkt] Input file size: 42604.93 kB
|
||||
[convert2xkt] Reading input metadata file: /home/lindsay/xeolabs/xeokit-model-conversion-tests-sep8/results/HolterTower/Holter_Tower_10/ifcCXConverterPipeline1/model_1.json
|
||||
[convert2xkt] Using parser: parseGLTFIntoXKTModel
|
||||
[convert2xkt] Parsing normals: enabled
|
||||
[convert2xkt] Parsing textures: enabled
|
||||
[convert2xkt] Input file parsed OK. Building XKT document...
|
||||
[convert2xkt] XKT document built OK. Writing to XKT file...
|
||||
[convert2xkt] Converted to: XKT v10
|
||||
[convert2xkt] XKT size: 12002.36 kB
|
||||
[convert2xkt] XKT textures size: 0.01kB
|
||||
[convert2xkt] Compression ratio: 3.55
|
||||
[convert2xkt] Conversion time: 26.83 s
|
||||
[convert2xkt] Converted metaobjects: 0
|
||||
[convert2xkt] Converted property sets: 0
|
||||
[convert2xkt] Converted drawable objects: 60283
|
||||
[convert2xkt] Converted geometries: 108514
|
||||
[convert2xkt] Converted textures: 0
|
||||
[convert2xkt] Converted textureSets: 0
|
||||
[convert2xkt] Converted triangles: 2241591
|
||||
[convert2xkt] Converted vertices: 6724773
|
||||
[convert2xkt] Converted UVs: 0
|
||||
[convert2xkt] Converted normals: 0
|
||||
[convert2xkt] Number of tiles: 1
|
||||
[convert2xkt] minTileSize: 500
|
||||
[convert2xkt] Writing XKT file: results/HolterTower/Holter_Tower_10/ifcCXConverterPipeline1/model_1.xkt
|
||||
[convert2xkt] Converted model2.xkt (2 of 2)
|
||||
[convert2xkt] Done.
|
||||
node --max-old-space-size=24000 ~/xeolabs/xeokit-convert-aug9/convert2xkt.js -t -n -a results/HolterTower/Holter_Tower_10/ifcCXConverterPipeline1/model.glb.manifest.json -o results/HolterTower/Holter_Tower_10/ifcCXConverterPipeline1/model.xkt.manifest.json -l >> /home/lindsay/xeolabs/xeokit-model-conversion-tests-sep8/results/HolterTower/Holter_Tower_10/ifcCXConverterPipeline1/log.txt
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"inputFile": "results/HolterTower/Holter_Tower_10/ifcCXConverterPipeline1/model.glb.manifest.json",
|
||||
"converterApplication": "convert2xkt",
|
||||
"converterApplicationVersion": "v1.1.11",
|
||||
"conversionDate": "19-12-2023- 15-17-10",
|
||||
"outputDir": "results/HolterTower/Holter_Tower_10/ifcCXConverterPipeline1/",
|
||||
"xktFiles": [
|
||||
"model.xkt",
|
||||
"model_1.xkt"
|
||||
]
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"id": "HousePlan",
|
||||
"name": "House Plan",
|
||||
"models": [
|
||||
{
|
||||
"id": "design",
|
||||
"name": "House Plan",
|
||||
"pbrEnabled": true
|
||||
}
|
||||
],
|
||||
"viewerConfigs": {
|
||||
},
|
||||
"viewerContent": {
|
||||
"modelsLoaded": [
|
||||
"design"
|
||||
]
|
||||
},
|
||||
"viewerState": {
|
||||
"tabOpen": "classes",
|
||||
"expandObjectsTree": 1,
|
||||
"expandClassesTree": 1,
|
||||
"expandStoreysTree": 1
|
||||
}
|
||||
}
|
||||
Binary file not shown.
@@ -0,0 +1,45 @@
|
||||
{
|
||||
"id": "IfcOpenHouse4",
|
||||
"name": "IfcOpenHouse4",
|
||||
"models": [
|
||||
{
|
||||
"id": "house1",
|
||||
"name": "House 1",
|
||||
"origin": [0,0,-5],
|
||||
"globalizeObjectIds": true
|
||||
},
|
||||
{
|
||||
"id": "house2",
|
||||
"name": "House 2",
|
||||
"origin": [0,0,10],
|
||||
"globalizeObjectIds": true
|
||||
}
|
||||
],
|
||||
"viewerConfigs": {
|
||||
},
|
||||
"viewerContent": {
|
||||
"modelsLoaded": [
|
||||
"house1", "house2"
|
||||
],
|
||||
"objectColors": {
|
||||
"IfcSpace": {
|
||||
"opacity": 0.3
|
||||
},
|
||||
"IfcWindow": {
|
||||
"opacity": 0.4
|
||||
},
|
||||
"IfcOpeningElement": {
|
||||
"opacity": 0.3
|
||||
},
|
||||
"IfcPlate": {
|
||||
"opacity": 0.3
|
||||
}
|
||||
}
|
||||
},
|
||||
"viewerState": {
|
||||
"tabOpen": "classes",
|
||||
"expandObjectsTree": 1,
|
||||
"expandClassesTree": 1,
|
||||
"expandStoreysTree": 2
|
||||
}
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,31 @@
|
||||
{
|
||||
"id": "Karhumaki",
|
||||
"name": "Karhumaki",
|
||||
"created": "Wed, 14 Jun 2023 07:00:00 GMT",
|
||||
"models": [
|
||||
{
|
||||
"id": "Karhumaki-Bridge",
|
||||
"name": "Karhumaki Bridge",
|
||||
"manifest": "manifest.json"
|
||||
},
|
||||
{
|
||||
"id": "Karhumaki-Terrains",
|
||||
"name": "Karhumaki Terrains",
|
||||
"manifest": "manifest.json",
|
||||
"edges": false
|
||||
}
|
||||
],
|
||||
"viewerConfigs": {
|
||||
"backgroundColor": [
|
||||
0.95,
|
||||
0.95,
|
||||
1.0
|
||||
]
|
||||
},
|
||||
"viewerContent": {
|
||||
"modelsLoaded": [
|
||||
"Karhumaki-Bridge"
|
||||
]
|
||||
},
|
||||
"viewerState": {}
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"xktFiles": [
|
||||
"model.xkt",
|
||||
"model_1.xkt",
|
||||
"model_2.xkt",
|
||||
"model_3.xkt",
|
||||
"model_4.xkt",
|
||||
"model_5.xkt",
|
||||
"model_6.xkt",
|
||||
"model_7.xkt",
|
||||
"model_8.xkt",
|
||||
"model_9.xkt"
|
||||
]
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"xktFiles": [
|
||||
"model.xkt"
|
||||
]
|
||||
}
|
||||
Binary file not shown.
@@ -0,0 +1,76 @@
|
||||
{
|
||||
"id": "MAP",
|
||||
"name": "MAP",
|
||||
"models": [
|
||||
{
|
||||
"id": "MAPFullPrecision",
|
||||
"name": "Double-Precision IFC Model"
|
||||
},
|
||||
{
|
||||
"id": "MAPJitter",
|
||||
"name": "Single-Precision IFC Model",
|
||||
"saoEnabled": false
|
||||
},
|
||||
{
|
||||
"id": "MAPPointCloud",
|
||||
"name": "Double-Precision Point Cloud",
|
||||
"saoEnabled": false,
|
||||
"position": [
|
||||
1842041,
|
||||
0.0,
|
||||
-5173299
|
||||
]
|
||||
}
|
||||
],
|
||||
"viewerConfigs": {
|
||||
"externalMetadata": true,
|
||||
"backgroundColor": [
|
||||
0.95,
|
||||
0.95,
|
||||
1.0
|
||||
],
|
||||
"objectColors": {
|
||||
"IfcSpace": {
|
||||
"opacity": 0.3
|
||||
},
|
||||
"IfcWindow": {
|
||||
"opacity": 0.4
|
||||
},
|
||||
"IfcOpeningElement": {
|
||||
"opacity": 0.3
|
||||
},
|
||||
"IfcPlate": {
|
||||
"opacity": 0.3
|
||||
}
|
||||
}
|
||||
},
|
||||
"viewerContent": {
|
||||
"modelsLoaded": [
|
||||
"MAPFullPrecision"
|
||||
]
|
||||
},
|
||||
"viewerState": {
|
||||
"tabOpen": "objects",
|
||||
"expandObjectsTree": 3,
|
||||
"expandClassesTree": 1,
|
||||
"expandStoreysTree": 1,
|
||||
"setCamera": {
|
||||
"eye": [
|
||||
1841982.5187600704,
|
||||
19.207790938410042,
|
||||
-5173303.042326414
|
||||
],
|
||||
"look": [
|
||||
1842011.793756829,
|
||||
9.913817421536704,
|
||||
-5173299.841616623
|
||||
],
|
||||
"up": [
|
||||
0.2991762376746394,
|
||||
0.9536370664170352,
|
||||
0.0327096983532173
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,50 @@
|
||||
{
|
||||
"id": "MAP",
|
||||
"name": "MAP",
|
||||
"models": [
|
||||
{
|
||||
"id": "MAPPointCloud",
|
||||
"name": "Point Cloud Scan",
|
||||
"rotation": [
|
||||
0,
|
||||
90,
|
||||
0
|
||||
],
|
||||
"position": [
|
||||
1842051,
|
||||
0.0,
|
||||
-5173310
|
||||
],
|
||||
"saoEnabled": false
|
||||
},
|
||||
{
|
||||
"id": "MAPFullPrecision",
|
||||
"name": "Double-Precision IFC Model"
|
||||
}
|
||||
],
|
||||
"viewerConfigs": {
|
||||
"externalMetadata": true,
|
||||
"backgroundColor": [
|
||||
0.95,
|
||||
0.95,
|
||||
1.0
|
||||
]
|
||||
},
|
||||
"viewerContent": {
|
||||
"modelsLoaded": [
|
||||
"MAPPointCloud",
|
||||
"MAPFullPrecision"
|
||||
]
|
||||
},
|
||||
"viewerState": {
|
||||
"tabOpen": "objects",
|
||||
"expandObjectsTree": 3,
|
||||
"expandClassesTree": 1,
|
||||
"expandStoreysTree": 1,
|
||||
"setCamera": {
|
||||
"eye": [1842070.8594076033, 56.01670122249443, -5173214.553421429],
|
||||
"look": [1842050.3038895482, 10.140423835076394, -5173310.118169226],
|
||||
"up": [-0.08, 0.9, -0.41]
|
||||
}
|
||||
}
|
||||
}
|
||||
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"id": "1601",
|
||||
"projectId": "3toKckUfH2jBmd$7uhJHa6",
|
||||
"author": "",
|
||||
"createdAt": "2017-01-19T01:36:20",
|
||||
"schema": "na",
|
||||
"creatingApplication": "xeokit-gltf-to-xkt 1.0.0",
|
||||
"metaObjects": [
|
||||
{
|
||||
"id": "test.ply",
|
||||
"name": "Point Cloud",
|
||||
"type": "XKTPointCloud",
|
||||
"parent": null
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,60 @@
|
||||
{
|
||||
"id": "ManyModels",
|
||||
"name": "Many Models",
|
||||
"models": [
|
||||
{
|
||||
"id": "Schependomlaan",
|
||||
"name": "Schependomlaan",
|
||||
"position": [
|
||||
-100,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"saoEnabled": true
|
||||
},
|
||||
{
|
||||
"id": "Schependomlaan_invalid",
|
||||
"name": "Schependomlaan Invalid",
|
||||
"position": [
|
||||
-100,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"saoEnabled": true
|
||||
},
|
||||
{
|
||||
"id": "OTCConferenceCenter",
|
||||
"name": "OTC Conference Center",
|
||||
"position": [
|
||||
100,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"saoEnabled": false
|
||||
},
|
||||
{
|
||||
"id": "MAPFullPrecision",
|
||||
"name": "Model with Full Precision",
|
||||
"position": [
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"saoEnabled": false
|
||||
}
|
||||
],
|
||||
"viewerConfigs": {
|
||||
"externalMetadata": true,
|
||||
"backgroundColor": [
|
||||
0.95,
|
||||
0.95,
|
||||
1.0
|
||||
]
|
||||
},
|
||||
"viewerContent": {
|
||||
"modelsLoaded": [
|
||||
"Schependomlaan",
|
||||
"OTCConferenceCenter"
|
||||
]
|
||||
}
|
||||
}
|
||||
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,42 @@
|
||||
{
|
||||
"id": "otcConferenceCenter",
|
||||
"name": "OTC Conference Center",
|
||||
"models": [
|
||||
{
|
||||
"id": "design",
|
||||
"name": "OTC Conference Center Design"
|
||||
}
|
||||
],
|
||||
"viewerConfigs": {
|
||||
"backgroundColor": [
|
||||
0.95,
|
||||
0.95,
|
||||
1.0
|
||||
],
|
||||
"objectColors": {
|
||||
"IfcSpace": {
|
||||
"opacity": 0.3
|
||||
},
|
||||
"IfcWindow": {
|
||||
"opacity": 0.4
|
||||
},
|
||||
"IfcOpeningElement": {
|
||||
"opacity": 0.3
|
||||
},
|
||||
"IfcPlate": {
|
||||
"opacity": 0.3
|
||||
}
|
||||
}
|
||||
},
|
||||
"viewerContent": {
|
||||
"modelsLoaded": [
|
||||
"design"
|
||||
]
|
||||
},
|
||||
"viewerState": {
|
||||
"tabOpen": "objects",
|
||||
"expandObjectsTree": 3,
|
||||
"expandClassesTree": 1,
|
||||
"expandStoreysTree": 1
|
||||
}
|
||||
}
|
||||
Binary file not shown.
@@ -0,0 +1,48 @@
|
||||
{
|
||||
"id": "otcConferenceCenter",
|
||||
"name": "OTC Conference Center",
|
||||
"models": [
|
||||
{
|
||||
"id": "design",
|
||||
"name": "OTC Conference Center Design",
|
||||
"useDataTextures": {
|
||||
"enableViewFrustumCulling": true,
|
||||
"targetLodFps": 20,
|
||||
"disableVertexWelding": true,
|
||||
"disableIndexRebucketing": true
|
||||
}
|
||||
}
|
||||
],
|
||||
"viewerConfigs": {
|
||||
"backgroundColor": [
|
||||
0.95,
|
||||
0.95,
|
||||
1.0
|
||||
],
|
||||
"objectColors": {
|
||||
"IfcSpace": {
|
||||
"opacity": 0.3
|
||||
},
|
||||
"IfcWindow": {
|
||||
"opacity": 0.4
|
||||
},
|
||||
"IfcOpeningElement": {
|
||||
"opacity": 0.3
|
||||
},
|
||||
"IfcPlate": {
|
||||
"opacity": 0.3
|
||||
}
|
||||
}
|
||||
},
|
||||
"viewerContent": {
|
||||
"modelsLoaded": [
|
||||
"design"
|
||||
]
|
||||
},
|
||||
"viewerState": {
|
||||
"tabOpen": "objects",
|
||||
"expandObjectsTree": 3,
|
||||
"expandClassesTree": 1,
|
||||
"expandStoreysTree": 1
|
||||
}
|
||||
}
|
||||
Binary file not shown.
@@ -0,0 +1,44 @@
|
||||
{
|
||||
"id": "OpenProject",
|
||||
"name": "OpenProject",
|
||||
"models": [
|
||||
{
|
||||
"id": "Test",
|
||||
"name": "Test Model"
|
||||
}
|
||||
],
|
||||
"viewerConfigs": {
|
||||
"externalMetadata": false,
|
||||
"backgroundColor": [
|
||||
0.95,
|
||||
0.95,
|
||||
1.0
|
||||
],
|
||||
"objectColors": {
|
||||
"IfcSpace": {
|
||||
"opacity": 0.3
|
||||
},
|
||||
"IfcWindow": {
|
||||
"opacity": 0.4
|
||||
},
|
||||
"IfcOpeningElement": {
|
||||
"opacity": 0.3
|
||||
},
|
||||
"IfcPlate": {
|
||||
"opacity": 0.3
|
||||
}
|
||||
}
|
||||
},
|
||||
"viewerContent": {
|
||||
"modelsLoaded": [
|
||||
"Test"
|
||||
]
|
||||
},
|
||||
"viewerState": {
|
||||
"tabOpen": "objects",
|
||||
"expandObjectsTree": 3,
|
||||
"expandClassesTree": 1,
|
||||
"expandStoreysTree": 1
|
||||
}
|
||||
}
|
||||
|
||||
Binary file not shown.
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"id": "RevitSamples",
|
||||
"name": "Revit Samples",
|
||||
"models": [
|
||||
{
|
||||
"id": "rac",
|
||||
"name": "RAC House Sample Project"
|
||||
}
|
||||
],
|
||||
"viewerConfigs": {
|
||||
"backgroundColor": [
|
||||
0.95,
|
||||
0.95,
|
||||
1.0
|
||||
]
|
||||
},
|
||||
"viewerContent": {
|
||||
"modelsLoaded": [
|
||||
"rac"
|
||||
]
|
||||
},
|
||||
"viewerState": {
|
||||
"setCamera": {
|
||||
"eye": [-24.922208391474733, 7.724285093881156, 44.21141920495865],
|
||||
"look": [-17.410164435219464, 2.4885901415523763, 21.584983198113253],
|
||||
"up": [0.06758662493996474, 0.9767242939035395, -0.20357235035204685]
|
||||
}
|
||||
}
|
||||
}
|
||||
Binary file not shown.
@@ -0,0 +1,31 @@
|
||||
{
|
||||
"id": "RevitSamples",
|
||||
"name": "Revit Samples",
|
||||
"models": [
|
||||
{
|
||||
"id": "rac",
|
||||
"name": "RAC House Sample Project"
|
||||
},
|
||||
{
|
||||
"id": "rac_advanced_sample_project",
|
||||
"name": "RAC Advanced Sample Project",
|
||||
"manifest": "manifest.json"
|
||||
},
|
||||
{
|
||||
"id": "rme_advanced_sample_project",
|
||||
"name": "RME Advanced Sample Project"
|
||||
}
|
||||
],
|
||||
"viewerConfigs": {
|
||||
"backgroundColor": [
|
||||
0.95,
|
||||
0.95,
|
||||
1.0
|
||||
]
|
||||
},
|
||||
"viewerContent": {
|
||||
"modelsLoaded": [
|
||||
"rac_advanced_sample_project"
|
||||
]
|
||||
}
|
||||
}
|
||||
Binary file not shown.
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"inputFile": "results/Revit/rac_advanced_sample_project/ifcCXConverterPipeline1/model.glb.manifest.json",
|
||||
"converterApplication": "convert2xkt",
|
||||
"converterApplicationVersion": "v1.1.11",
|
||||
"conversionDate": "19-12-2023- 15-24-34",
|
||||
"outputDir": "results/Revit/rac_advanced_sample_project/ifcCXConverterPipeline1/",
|
||||
"xktFiles": [
|
||||
"model.xkt"
|
||||
]
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1,31 @@
|
||||
{
|
||||
"id": "SGD_BODO",
|
||||
"name": "Karhumaki-Bridge",
|
||||
"created": "Wed, 14 Jun 2023 07:00:00 GMT",
|
||||
"models": [
|
||||
{
|
||||
"id": "SGD_BODO_Arch-3",
|
||||
"name": "SGD_BODO_Arch-3",
|
||||
"manifest": "manifest.json"
|
||||
},
|
||||
{
|
||||
"id": "SGD_BODO_Eng-HVAC-Plumbing",
|
||||
"name": "SGD_BODO_Eng-HVAC-Plumbing",
|
||||
"manifest": "manifest.json"
|
||||
},
|
||||
{
|
||||
"id": "SGD_BODO_Eng-HVAC-Ventilation",
|
||||
"name": "SGD_BODO_Eng-HVAC-Ventilation",
|
||||
"manifest": "manifest.json"
|
||||
}
|
||||
],
|
||||
"viewerConfigs": {
|
||||
"backgroundColor": [
|
||||
0.95,
|
||||
0.95,
|
||||
1.0
|
||||
]
|
||||
},
|
||||
"viewerContent": {},
|
||||
"viewerState": {}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
{"inputFile":"results/SGD_BODO_ifc/SGD_BODO_Arch-3/ifcCXConverterPipeline1/model.glb.manifest.json","converterApplication":"convert2xkt","converterApplicationVersion":"v1.1.10","conversionDate":"07-09-2023- 14-12-57","outputDir":"results/SGD_BODO_ifc/SGD_BODO_Arch-3/ifcCXConverterPipeline1/","xktFiles":["model.xkt"]}
|
||||
Binary file not shown.
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"inputFile": "results/SGD_BODO_ifc/SGD_BODO_Eng-HVAC-Plumbing/ifcCXConverterPipeline1/model.glb.manifest.json",
|
||||
"converterApplication": "convert2xkt",
|
||||
"converterApplicationVersion": "v1.1.10",
|
||||
"conversionDate": "07-09-2023- 14-13-13",
|
||||
"outputDir": "results/SGD_BODO_ifc/SGD_BODO_Eng-HVAC-Plumbing/ifcCXConverterPipeline1/",
|
||||
"xktFiles": [
|
||||
"model.xkt",
|
||||
"model_1.xkt"
|
||||
]
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"inputFile": "results/SGD_BODO_ifc/SGD_BODO_Eng-HVAC-Ventilation/ifcCXConverterPipeline1/model.glb.manifest.json",
|
||||
"converterApplication": "convert2xkt",
|
||||
"converterApplicationVersion": "v1.1.10",
|
||||
"conversionDate": "07-09-2023- 14-13-24",
|
||||
"outputDir": "results/SGD_BODO_ifc/SGD_BODO_Eng-HVAC-Ventilation/ifcCXConverterPipeline1/",
|
||||
"xktFiles": [
|
||||
"model.xkt"
|
||||
]
|
||||
}
|
||||
Binary file not shown.
@@ -0,0 +1 @@
|
||||
{"pipelines":{"ifcCommunityPipeline1":{"xktConvertedOK":false,"glbConvertedOK":false,"jsonConvertedOK":false},"ifcCXConverterPipeline1":{"xktConvertedOK":true,"glbConvertedOK":true,"jsonConvertedOK":true}}}
|
||||
@@ -0,0 +1,44 @@
|
||||
{
|
||||
"id": "schependomlaan",
|
||||
"name": "Schependomlaan",
|
||||
"models": [
|
||||
{
|
||||
"id": "design",
|
||||
"name": "Schependomlaan Design"
|
||||
}
|
||||
],
|
||||
"viewerConfigs": {
|
||||
"backgroundColor": [
|
||||
0.95,
|
||||
0.95,
|
||||
1.0
|
||||
],
|
||||
"objectColors": {
|
||||
"IfcSpace": {
|
||||
"opacity": 0.3
|
||||
},
|
||||
"IfcWindow": {
|
||||
"opacity": 0.4
|
||||
},
|
||||
"IfcOpeningElement": {
|
||||
"opacity": 0.3
|
||||
},
|
||||
"IfcPlate": {
|
||||
"opacity": 0.3
|
||||
}
|
||||
}
|
||||
},
|
||||
"viewerContent": {
|
||||
"modelsLoaded": [
|
||||
"design"
|
||||
]
|
||||
},
|
||||
"viewerState": {
|
||||
"viewCubeEnabled": true,
|
||||
"threeDEnabled": true,
|
||||
"tabOpen": "classes",
|
||||
"expandObjectsTree": 1,
|
||||
"expandClassesTree": 1,
|
||||
"expandStoreysTree": 1
|
||||
}
|
||||
}
|
||||
Binary file not shown.
@@ -0,0 +1,30 @@
|
||||
{
|
||||
"id": "schependomlaan_invalid",
|
||||
"name": "Schependomlaan Invalid",
|
||||
"models": [
|
||||
{
|
||||
"id": "design",
|
||||
"name": "Schependomlaan Design"
|
||||
}
|
||||
],
|
||||
"viewerConfigs": {
|
||||
"backgroundColor": [
|
||||
0.95,
|
||||
0.95,
|
||||
1.0
|
||||
]
|
||||
},
|
||||
"viewerContent": {
|
||||
"modelsLoaded": [
|
||||
"design"
|
||||
]
|
||||
},
|
||||
"viewerState": {
|
||||
"viewCubeEnabled": true,
|
||||
"threeDEnabled": true,
|
||||
"tabOpen": "classes",
|
||||
"expandObjectsTree": 1,
|
||||
"expandClassesTree": 1,
|
||||
"expandStoreysTree": 1
|
||||
}
|
||||
}
|
||||
Binary file not shown.
@@ -0,0 +1,44 @@
|
||||
{
|
||||
"id": "Schependomlaan_SelectedStorey",
|
||||
"name": "Schependomlaan",
|
||||
"models": [
|
||||
{
|
||||
"id": "design",
|
||||
"name": "Schependomlaan Design"
|
||||
}
|
||||
],
|
||||
"viewerConfigs": {
|
||||
"backgroundColor": [
|
||||
0.95,
|
||||
0.95,
|
||||
1.0
|
||||
]
|
||||
},
|
||||
"viewerContent": {
|
||||
"modelsLoaded": [
|
||||
"design"
|
||||
],
|
||||
"objectColors": {
|
||||
"IfcSpace": {
|
||||
"opacity": 0.3
|
||||
},
|
||||
"IfcWindow": {
|
||||
"opacity": 0.4
|
||||
},
|
||||
"IfcOpeningElement": {
|
||||
"opacity": 0.3
|
||||
},
|
||||
"IfcPlate": {
|
||||
"opacity": 0.3
|
||||
}
|
||||
}
|
||||
},
|
||||
"viewerState": {
|
||||
"threeDEnabled": true,
|
||||
"selectedStorey": "2SWZMQPyD9pfT9q87pgXa1",
|
||||
"tabOpen": "objects",
|
||||
"expandObjectsTree": 3,
|
||||
"expandClassesTree": 1,
|
||||
"expandStoreysTree": 1
|
||||
}
|
||||
}
|
||||
Binary file not shown.
@@ -0,0 +1,61 @@
|
||||
{
|
||||
"id": "Systhema",
|
||||
"name": "Systhema",
|
||||
"models": [
|
||||
{
|
||||
"id": "170133_Asvest_20200131",
|
||||
"name": "170133_Asvest_20200131",
|
||||
"objectColorSource": "model"
|
||||
},
|
||||
{
|
||||
"id": "2013022_IAA_BWK_R2019-BLOK_recht_2020-01-30",
|
||||
"name": "2013022_IAA_BWK_R2019-BLOK_recht_2020-01-30",
|
||||
"objectColorSource": "model"
|
||||
},
|
||||
{
|
||||
"id": "2013022_IAA_BWK_R2019-BLOK_recht_2020-02-06",
|
||||
"name": "2013022_IAA_BWK_R2019-BLOK_recht_2020-02-06",
|
||||
"objectColorSource": "model"
|
||||
},
|
||||
{
|
||||
"id": "20191011_11293-20174268_Oostenburgereiland_K2B_UO",
|
||||
"name": "20191011_11293-20174268_Oostenburgereiland_K2B_UO",
|
||||
"objectColorSource": "model"
|
||||
},
|
||||
{
|
||||
"id": "Campus_Vianen_LOD300_2017_Architecture",
|
||||
"name": "Campus_Vianen_LOD300_2017_Architecture",
|
||||
"objectColorSource": "model"
|
||||
},
|
||||
{
|
||||
"id": "Kabu-model-voors-bestek",
|
||||
"name": "Kabu-model-voors-bestek",
|
||||
"objectColorSource": "model"
|
||||
},
|
||||
{
|
||||
"id": "vakantiewoning_original",
|
||||
"name": "vakantiewoning_original",
|
||||
"objectColorSource": "model"
|
||||
},
|
||||
{
|
||||
"id": "2017058AA_Sparrenlaan_Ermelo_BWK_2020-02-17_EXCL-A_optimized",
|
||||
"name": "Sparrenlaan_Ermelo",
|
||||
"objectColorSource": "model"
|
||||
}
|
||||
],
|
||||
"viewerConfigs": {
|
||||
"externalMetadata": true,
|
||||
"backgroundColor": [
|
||||
0.95,
|
||||
0.95,
|
||||
1.0
|
||||
]
|
||||
},
|
||||
"viewerContent": {
|
||||
"modelsLoaded": [
|
||||
]
|
||||
},
|
||||
"viewerState": {
|
||||
"tabOpen": "models"
|
||||
}
|
||||
}
|
||||
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user