summaryrefslogtreecommitdiff
path: root/tests/examplefiles/sphere.pov
blob: 847ed4513eaf50dd84a5bfff0ef7b3522f7b4658 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include "colors.inc"    

background { color Cyan }

camera {
  location <0, 2, -3>
  look_at <0, 1, 2>
}

sphere {
  <0, 1, 2>, 2
  texture {
    pigment { color Yellow }
  }
}

light_source { <2, 4, -3> color White}