home *** CD-ROM | disk | FTP | other *** search
- // This file is an example of how one would write the initial
- // frame of the animation. This file would be read by POVAnim and
- // be output in a file similiar to animtest.pov.
-
-
- #include "colors.inc"
- #include "textures.inc"
- #include "stones.inc"
-
- #declare SPHERE_TRANS = <0,0,0>
- #declare SPHERE_ROTATE = <0,0,0>
- #declare CAM_ROTATE = <0,0,0>
- #declare CAM_TRANS = <0,0,-5>
- #declare WALLYSOFT_STR_TEST = "This is the Shit" // String Test - not func yet
- #declare MyRed = .5 // Float test - not func yet
-
- camera { location <0,0,0>
- look_at <0,0,.1>
- rotate CAM_ROTATE
- translate CAM_TRANS
- }
-
- light_source { <1,1,-2> color White }
-
- sphere { <0,0,0>, 1
- texture { T_Stone21 Shiny }
- rotate SPHERE_ROTATE
- translate SPHERE_TRANS
- }