home *** CD-ROM | disk | FTP | other *** search
- //
- // filename: F2PSCN4.POV
- //
- // Plasma terrain.
- //
- // "plasma.gif" must be in POV-Ray's search path.
- //
- // by David Grossman
- //
-
- #include "frct2pov.inc"
-
- camera { location < 1, 8, 4 >
- direction < 0, 0, 4 >
- up < 0, 1, 0 > // y is up
- right < -4/3, 0, 0 > // right handed system
- look_at < 0, 0, 0 >
- }
-
- object { height_field { gif "plasma.gif" translate <-.5,-.5,-.5>
- scale < 2,1,1.5 > }
- texture { frct2pov
- finish { ambient .6 diffuse .5 } rotate -90*x } }
-
- object { light_source { < 10, 45, 20 > color rgb < 1, 1, 1 > } }
-
-
-
-
-
-