home *** CD-ROM | disk | FTP | other *** search
/ World of Graphics / WOGRAPH.BIN / 529.VENUS3.V < prev    next >
Text File  |  1992-03-15  |  894b  |  69 lines

  1.  
  2. //      Venus de Milo in water
  3.  
  4. #include color.v
  5.  
  6. studio {
  7.     from 1 -10 2
  8.     at 0 0 0
  9.     up 0 0 1
  10.     angle 60
  11.     res 360 480
  12.     antialias adaptive
  13.     threshold 2
  14.     aspect 3/4
  15.     background {
  16.         greys.map
  17.         up 0 0 -1
  18.     }
  19.     ambient white * .1
  20. }
  21.  
  22. light {
  23.     type point
  24.     falloff 0
  25.     position 1 -.5 5
  26.     color white * .5
  27. }
  28. light {
  29.     type point
  30.     falloff 0
  31.     position -2 -4 5
  32.     color white * .5
  33. }
  34.  
  35. //      water surface
  36.  
  37. surf {
  38.     diff 0 .1 .05
  39.     spec .05 .15 .1
  40.     trans .5 .8 .7
  41.     ior 1.2
  42.     shine 100 white
  43.     bump {
  44.         wave { center -.5 .2 -.8 wavelength 1.3 amp .2 }
  45.         wave { center .6 -.3 -.8 wavelength .9 amp .1 }
  46.     }
  47. }
  48.  
  49. ring { center 0 0 -1 normal 0 0 1 radius 10000 }
  50.  
  51. //      metallic venus surface
  52.  
  53. surface {
  54.     bump {
  55.         turbulence {
  56.             scale .025 .025 .025
  57.             amp .5
  58.             terms 5
  59.         }
  60.     }
  61.     diffuse steel_blue
  62.     spec white * .4
  63.     shine 10 gold
  64. }
  65.  
  66. #include venus.vo
  67.  
  68.  
  69.