examples/graphicsview/portedasteroids/sprites/rock3/rock3.pov
author Eckhart Koeppen <eckhart.koppen@nokia.com>
Wed, 21 Apr 2010 12:15:23 +0300
branchRCL_3
changeset 13 cc75c76972ee
parent 0 1918ee327afb
permissions -rw-r--r--
a69086a7359b3de9db0823ce58d9aab8b5c369be

#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, 30, 360*clock>
}