-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscene_t.json
118 lines (116 loc) · 2.13 KB
/
scene_t.json
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"scene": {
"camera": {
"origin": [50.0, 45.0, 205.6],
"target": [50.0, 44.957388, 204.6]
},
"materials": [{
"name": "mirror",
"type": "specular",
"color": [0.9, 0.9, 0.9],
"emission": 0.0
}, {
"name": "dark mirror",
"type": "specular",
"color": [0.4, 0.4, 0.4],
"emission": 0.0
}, {
"name": "glass",
"type": "refractive",
"color": [0.9, 0.9, 0.9],
"emission": 0.0
}, {
"name": "white",
"type": "diffuse",
"color": [0.75, 0.75, 0.75],
"emission": 0.0
}, {
"name": "red",
"type": "diffuse",
"color": [0.75, 0.25, 0.25],
"emission": 0.0
}, {
"name": "green",
"type": "diffuse",
"color": [0.25, 0.75, 0.25],
"emission": 0.0
}, {
"name": "blue",
"type": "diffuse",
"color": [0.25, 0.25, 0.75],
"emission": 0.0
}, {
"name": "light",
"type": "diffuse",
"color": [0.9, 0.9, 0.9],
"emission": 12.0
}],
"primitives": [{
"name": "light",
"type": "triangle",
"points": [
[40.0, 81.0, 40.0],
[40.0, 81.0, 60.0],
[60.0, 81.0, 40.0]
],
"material": "light"
}, {
"name": "mirror ball",
"type": "sphere",
"center": [27.0, 16.5, 47.0],
"radius": 16.5,
"material": "mirror"
}, {
"name": "glass ball",
"type": "sphere",
"center": [73.0, 16.5, 78.0],
"radius": 16.5,
"material": "glass"
}, {
"name": "floor",
"type": "triangle",
"points": [
[0.0, 0.0, 0.0],
[0.0, 0.0, 120.0],
[100.0, 0.0, 0.0]
],
"material": "dark mirror"
}, {
"name": "ceiling",
"type": "triangle",
"points": [
[0.0, 81.6, 0.0],
[0.0, 81.6, 120.0],
[100.0, 81.6, 0.0]
],
"material": "white"
}, {
"name": "left",
"type": "triangle",
"points": [
[0.0, 0.0, 0.0],
[0.0, 81.6, 0.0],
[0.0, 0.0, 120.0]
],
"material": "red"
}, {
"name": "right",
"type": "triangle",
"points": [
[100.0, 0.0, 0.0],
[100.0, 81.6, 0.0],
[100.0, 0.0, 120.0]
],
"material": "blue"
}, {
"name": "back",
"type": "triangle",
"points": [
[0.0, 0.0, 0.0],
[0.0, 81.6, 0.0],
[100.0, 0.0, 0.0]
],
"material": "white"
}]
}
}