-
Notifications
You must be signed in to change notification settings - Fork 16
/
scene.json
80 lines (80 loc) · 2.03 KB
/
scene.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
{
"scenes": [
{
"name" : "spheres of many sizes",
"objects" : [
{
"name" : "tiny",
"type" : "sphere_t",
"pos" : [ -2.5, 0.1, 0.0 ],
"s" : 0.1,
"material" : 0.0
}, {
"name" : "small",
"type" : "sphere_t",
"pos" : [ -2, 0.3, 0.0 ],
"s" : 0.3,
"material" : 1.0
}, {
"name" : "medium",
"type" : "sphere_t",
"pos" : [ -1, 0.5, 0.0 ],
"s" : 0.5,
"material" : 2.0
}, {
"name" : "large",
"type" : "sphere_t",
"pos" : [ 0.5, 0.75, 0.0 ],
"s" : 0.75,
"material" : 3.0
}, {
"name" : "jumbo",
"type" : "sphere_t",
"pos" : [ 2.5, 1.0, 0.0 ],
"s" : 1.0,
"material" : 4.0
}
]
}, {
"name" : "temple",
"objects" : [
{
"name" : "center",
"type" : "bounding_box_t",
"pos" : [ 0, 0.3, 0 ],
"b" : [ 0.3, 0.3, 0.3 ],
"e" : 0.05,
"material" : 3.14
},
{
"name" : "pyramid_0",
"type" : "pyramid_t",
"pos" : [ -1, 0, 1 ],
"h" : 0.6,
"material" : 1.2
},
{
"name" : "pyramid_1",
"type" : "pyramid_t",
"pos" : [ 1, 0, 1 ],
"h" : 0.6,
"material" : 1.2
},
{
"name" : "pyramid_2",
"type" : "pyramid_t",
"pos" : [ 1, 0, -1 ],
"h" : 0.6,
"material" : 1.2
},
{
"name" : "pyramid_3",
"type" : "pyramid_t",
"pos" : [ -1, 0, -1 ],
"h" : 0.6,
"material" : 1.2
}
]
}
]
}