home *** CD-ROM | disk | FTP | other *** search
/ World of Graphics / WOGRAPH.BIN / 506.TILES1.V < prev    next >
Text File  |  1992-03-14  |  1KB  |  72 lines

  1.  
  2. //      tiles
  3.  
  4. #include color.vc
  5.  
  6. studio {
  7.     from  8 -5 8
  8.     at 4.5 4.5 -2
  9.     up 0 0 1
  10.     angle 50
  11.     res 640 480
  12.     antialias adaptive
  13.     threshold 2
  14.     aspect 4/3
  15.     background {
  16.         greys.map
  17.     }
  18.     ambient white * .1
  19. }
  20.  
  21.  
  22. light {
  23.     type point
  24.     falloff 1
  25.     position -3 4 10
  26.     color white*9
  27. }
  28. light {
  29.     type point
  30.     falloff 1
  31.     position 12 -5 10
  32.     color white*9
  33. }
  34.  
  35. /* base surface */
  36. surf { diff plum * .4 }
  37. ring { center 0 0 -0.1 normal 0 0 1 radius 1000 }
  38.  
  39. /* chrome objects */
  40. surf {
  41.     diff light_steel_blue
  42.     spec white * .5
  43.     shine 100
  44. }
  45.  
  46. sphere { center 7 5 1.1 radius 1 }
  47.  
  48. cone { base 3 4 .1 apex 3 4 1 base_radius .6 apex_radius 1 }
  49. cone { base 3 4 1 apex 3 4 2.5 base_radius 1 apex_radius .5 }
  50. ring { center 3 4 2.5 normal 0 0 1 radius .5 }
  51.  
  52. transform { scale .5 rotate 0 0 40 translate 6 2 .6 }
  53. #include cube.vo
  54. transform_pop
  55.  
  56. /* tile surface */
  57. surf {
  58.     texture {
  59.         pattern spherical
  60.         turbulence {
  61.             terms 6
  62.             amp 6
  63.         }
  64.         blend .8
  65.         radius 1
  66.         radius 3
  67.         surf { diff 0 .3 .6 shine 20 white }
  68.         surf { diff 0 .1 .2 shine 20 white }
  69.     }
  70. }
  71. #include tiles.vo
  72.