JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
Autoconf: separate build dir, distclean, dir vars.
[vor.git] / font.pov
1 // pass in a random seed (integer) to this file with +K
2
3 #include "colors.inc"
4
5 #declare RS = seed(clock + 1);
6
7 #macro rnd() (rand(RS)) #end
8
9
10 camera
11 {
12         orthographic
13         // the _length_ of the up and right vectors determine the aspect ratio of the image (and in the case of an orthographic projection, also the _area_ visible (unless angle is defined, in which case the angle determines the visible area))
14         up <0, 0.40, 0>
15         right <30, 0, 0>
16         location <0, 0, -200>
17         look_at <0, 0, 0>
18
19 }
20
21 // same light sorce as ship.pov
22 light_source { <-500, 500, -700> White }
23
24
25 blob{
26         #include "font_guts.pov"
27         threshold 3
28         texture {
29                 pigment { rgb < 0.75, 0.75, 1.0 > }
30                 finish {
31                         ambient 0.35
32                         brilliance 2
33                         diffuse 0.3
34                         metallic
35                         specular 0.6
36                         roughness 1/60
37                         reflection 0.25
38                 }
39                 normal { bumps 0.1 scale 0.25 }
40         }
41 }