1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// Pov-ray image source for ksokoban
// copyright (c) 1998-1999 Anders Widell <awl@hem.passagen.se>
#declare FloorColour = <114/255, 114/255, 114/255>;
camera {
orthographic
location <0, 0, -50>
look_at <0, 0, 0>
right <1, 0, 0>
up <0, 1, 0>
}
light_source { <-5000, 10000, -10000> color rgb <1, 1, 1> }
light_source { <-5000, 10000, -10000> color rgb <1, 1, 1> }
plane { -z, -2
pigment { color rgb FloorColour }
}
|