-
Notifications
You must be signed in to change notification settings - Fork 0
/
input.xml
91 lines (91 loc) · 2.54 KB
/
input.xml
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
<?xml version="1.0"?>
<world x="2560" y="1600">
<samples>4</samples>
<camera>
<origin x="50.0" y="50.0" z="-600.0"></origin>
<direction x= "0.0" y = "0.0" z = "0.0"></direction>
<FOV>30</FOV>
</camera>
<objects>
<plane>
<shader>Lambertian</shader>
<colour r="1.0" g="1.0" b="1.0"></colour>
<origin x="0.0" y="-80.0" z="0.0"></origin>
<normal x="0.0" y="-1.0" z="0.0"></normal>
</plane>
<plane>
<shader>Lambertian</shader>
<colour r="0.0" g="1.0" b="1.0"></colour>
<origin x="0.0" y="400.0" z="0.0"></origin>
<normal x="0.0" y="1.0" z="0.0"></normal>
</plane>
<plane>
<shader>Lambertian</shader>
<colour r="1.0" g="0.0" b="1.0"></colour>
<origin x="-400.0" y="0.0" z="0.0"></origin>
<normal x="-1.0" y="0.0" z="0.0"></normal>
</plane>
<plane>
<shader>Lambertian</shader>
<colour r="1.0" g="1.0" b="0.0"></colour>
<origin x="400.0" y="0.0" z="0.0"></origin>
<normal x="1.0" y="0.0" z="0.0"></normal>
</plane>
<plane>
<shader>Lambertian</shader>
<colour r="0.5" g="0.0" b="0.0"></colour>
<origin x="0.0" y="0.0" z="500.0"></origin>
<normal x="0.0" y="0.0" z="1.0"></normal>
</plane>
<sphere>
<shader>Reflective</shader>
<origin x="-110.0" y="-30.0" z="0.0"></origin>
<radius>50</radius>
</sphere>
<sphere>
<shader>Lambertian</shader>
<colour r="1.0" g="0.0" b="0.0"></colour>
<origin x="110.0" y="-30.0" z="0.0"></origin>
<radius>50</radius>
</sphere>
<sphere>
<shader>Lambertian</shader>
<colour r="1.0" g="1.0" b="0.0"></colour>
<origin x="110.0" y="-30.0" z="-100.0"></origin>
<radius>50</radius>
</sphere>
<sphere>
<shader>Reflective</shader>
<origin x="-220.0" y="-30.0" z="0.0"></origin>
<radius>50</radius>
</sphere>
<sphere>
<shader>Lambertian</shader>
<colour r="1.0" g="0.0" b="0.0"></colour>
<origin x="220.0" y="-30.0" z="0.0"></origin>
<radius>50</radius>
</sphere>
</objects>
<lights>
<light>
<origin x="150.0" y="200.0" z="-300.0"></origin>
<colour r="0.0" g="1.0" b="1.0"></colour>
</light>
<light>
<origin x="-150.0" y="200.0" z="-300.0"></origin>
<colour r="0.0" g="0.0" b="1.0"></colour>
</light>
<light>
<origin x="150.0" y="200.0" z="-0.0"></origin>
<colour r="1.0" g="1.0" b="0.0"></colour>
</light>
<light>
<origin x="-150.0" y="200.0" z="0.0"></origin>
<colour r="1.0" g="1.0" b="1.0"></colour>
</light>
<light>
<origin x="0.0" y="100.0" z="-300.0"></origin>
<colour r="1.0" g="1.0" b="1.0"></colour>
</light>
</lights>
</world>