summaryrefslogtreecommitdiffstats
path: root/kasteroids/sprites/rock1/rock1.pov
blob: 58298c050523a63a95920c7cfb46fa8b1b1ab9bb (plain)
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
#include "colors.inc"
#include "shapes.inc"
#include "textures.inc"
// #include "stones.inc"

camera {
	location        <2,2,-6>
	up              <0, 1, 0>
//	right           <4/3, 0, 0>
	look_at         <0,0,0>
}

object { light_source { <10, 5, -5>  color red 1.1 green 1.1 blue 1.0 } }

#declare Rock =
mesh {
 #include "rock.inc"   /* collection of triangle or smooth_triangle data */
}

object {
  Rock
  texture {  pigment {White}  }
  scale 1.9
  rotate <60, 45, 360*clock>
}