home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 28 / amigaformatcd28.iso / -seriously_amiga- / graphics / tga2avi-1.228 / povanimex.pov < prev    next >
Encoding:
Text File  |  1998-05-09  |  801 b   |  29 lines

  1. // This file is an example of how one would write the initial
  2. // frame of the animation. This file would be read by POVAnim and
  3. // be output in a file similiar to animtest.pov.
  4.  
  5.  
  6. #include "colors.inc"
  7. #include "textures.inc"
  8. #include "stones.inc"
  9.  
  10. #declare SPHERE_TRANS = <0,0,0>
  11. #declare SPHERE_ROTATE = <0,0,0>
  12. #declare CAM_ROTATE = <0,0,0>
  13. #declare CAM_TRANS = <0,0,-5>
  14. #declare WALLYSOFT_STR_TEST = "This is the Shit"  // String Test - not func yet
  15. #declare MyRed = .5               // Float test - not func yet
  16.  
  17. camera { location <0,0,0> 
  18.          look_at <0,0,.1> 
  19.          rotate CAM_ROTATE 
  20.          translate CAM_TRANS 
  21. }
  22.  
  23. light_source { <1,1,-2> color White }
  24.  
  25. sphere { <0,0,0>, 1 
  26.   texture { T_Stone21 Shiny } 
  27.   rotate SPHERE_ROTATE 
  28.   translate SPHERE_TRANS
  29. }