home *** CD-ROM | disk | FTP | other *** search
/ World of Graphics / WOGRAPH.BIN / 527.CLOUD.V < prev    next >
Text File  |  1992-03-15  |  706b  |  60 lines

  1. //
  2. //      clouds???
  3. //
  4.  
  5. #include color.vc
  6.  
  7. studio {
  8.     from 10 3 5
  9.     at 0 0 5
  10.     up 0 0 1
  11.     angle 65
  12.     res 320 200
  13.     antialias adaptive
  14.     threshold 4
  15.     haze 0.01
  16.     aspect 4/3
  17.     background sky_blue
  18.     ambient white
  19. }
  20.  
  21. surface {
  22.     texture {
  23.         pattern checker
  24.         scale 14 23 0
  25.         blend .8
  26.         turbulence {
  27.             amp 3
  28.             terms 4
  29.         }
  30.         surface { diff white }
  31.         surface { diff sky_blue }
  32.     }
  33. }
  34. ring {
  35.     center 0 0 10
  36.     normal 0 0 -1
  37.     radius 2000
  38. }
  39.  
  40. surface {
  41.     texture {
  42.         pattern checker
  43.         scale 5 5 0
  44.         surface { diff blue }
  45.         surface { diff red }
  46.     }
  47. }
  48. ring {
  49.     center 0 0 0
  50.     normal 0 0 1
  51.     radius 2000
  52. }
  53.  
  54. surface {
  55.     spec .8 .8 .8
  56.     shine 20
  57. }
  58.  
  59. sphere { center 0 0 4 radius 3 }
  60.