File: box.pov

package info (click to toggle)
povray 1%3A3.6.1-12
  • links: PTS
  • area: non-free
  • in suites: lenny, squeeze
  • size: 31,084 kB
  • ctags: 20,310
  • sloc: ansic: 110,032; cpp: 86,573; sh: 13,595; pascal: 5,942; asm: 2,994; makefile: 1,753; ada: 1,637
file content (34 lines) | stat: -rw-r--r-- 623 bytes parent folder | download | duplicates (2)
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
// Persistence Of Vision raytracer version 3.1	sample file.
// File by Alexander Enzmann
//
// -w320 -h240
// -w800 -h600 +a0.3

global_settings { assumed_gamma 2.2 }

camera {
   location  <0, 0, -8>
   direction <0, 0, 1.2071>
   look_at   <0, 0, 0>
}

sphere { <0.0, 0.0, 0.0>, 2
   finish {
      ambient 0.2
      diffuse 0.8
      phong 1
   }
   pigment { color red 1 green 0 blue 0 }
}

box { <-2.0, -0.2, -2.0>, <2.0, 0.2, 2.0>
    finish {
       ambient 0.2
       diffuse 0.8
    }
    pigment { color red 1 green 0 blue 1 }

    rotate <-20, 30, 0>
}

light_source { <-10, 3, -20> color red 1 green 1 blue 1 }