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
|
{
"name": "root",
"globalData": {
"ambientCoeff": 0.5,
"diffuseCoeff": 0.5,
"specularCoeff": 0.5,
"transparentCoeff": 0
},
"cameraData": {
"position": [-3, -3, -3],
"up": [0, 1, 0],
"heightAngle": 30,
"focus": [0, 0, 0]
},
"groups": [
{
"name": "root",
"lights": [
{
"type": "directional",
"color": [1, 1, 1],
"direction": [10, 3, 0]
}
],
"primitives": [
{
"type": "cone",
"diffuse": [1, 0, 0],
"specular": [1, 1, 1],
"shininess": 25
}
]
}
]
}
|