1// grass tile for xrally
2// (C) 2/2000 Christian Perle (POVaddict)
3// render size: 64x64
4
5#include "colors.inc"
6
7camera {
8  location -30*z
9  up y
10  right x
11  look_at 0
12}
13
14plane {
15  z, 0 hollow
16  pigment {
17    granite
18    color_map {
19      [.5 color rgb<100/255, 100/255, 100/255>]
20      [.5 color rgb<140/255, 140/255, 140/255>]
21      [1 color rgb<180/255, 180/255, 180/255>]
22    }
23  }
24  finish { ambient 1 }
25}
26