1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
| let buildingObjects = {
| objects: [
| {
| objectName: 'floor',
| objectType: 'cube',
| length: 4000,
| width: 6000,
| height: 1,
| position: {
| x: 1400,
| y: 0,
| z: -2000
| },
| style:{
| color: 0x5F7480,
| }
| },
| {
| objectName: 'floor',
| objectType: 'cube',
| length: 2750,
| width: 600,
| height: 5,
| position: {
| x: 1375,
| y: 297,
| z: 300
| },
| style:{
| color: 0x5F7480,
| transparent:1,
| opacity:0.35
| }
| }
| ]
| }
|
|