home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 22 / PC Actual CD 22.iso / SHARE / prog / POVRAY / CLOCKMOD.ZIP / PREVIEWS.POV < prev    next >
Encoding:
Text File  |  1997-06-24  |  1.4 KB  |  30 lines

  1. // CLOCK MODIFIER: PREVIEW OF ALL CLOCK MODIFICATIONS
  2. // **************************************************
  3. // This scene shows the nine different clock modifications that
  4. // can be used with the Clock Modifier include file.
  5.  
  6. // CAMERA AND LIGHTS
  7.    camera {location <0, 0, -10> look_at <0, 0, 0> angle 35}
  8.    light_source {<10, 10, -100> rgb 1}
  9.  
  10. // PREVIEW OPTIONS
  11.    #declare graph_only = true
  12.    #declare graph_smoothness = 20
  13.    #declare graph_thickness = .03
  14.    #declare graph_continuous = true
  15.  
  16. // TOP ROW (Accelerate, Decelerate, S-Curve)
  17.    object {#declare clock_type = "A" #include "ClockP.inc" translate <-2, 1, 0>}
  18.    object {#declare clock_type = "D" #include "ClockP.inc" translate <-.5, 1, 0>}
  19.    object {#declare clock_type = "S" #include "ClockP.inc" translate <1, 1, 0>}
  20.  
  21. // MIDDLE ROW (Triangle, Jump, Bounce)
  22.    object {#declare clock_type = "T" #include "ClockP.inc" translate <-2, -.5, 0>}
  23.    object {#declare clock_type = "J" #include "ClockP.inc" translate <-.5, -.5, 0>}
  24.    object {#declare clock_type = "B" #include "ClockP.inc" translate <1, -.5, 0>}
  25.  
  26. // BOTTOM ROW (Oscillator, Wave, Recoil)
  27.    object {#declare clock_type = "O" #include "ClockP.inc" translate <-2, -2, 0>}
  28.    object {#declare clock_type = "W" #include "ClockP.inc" translate <-.5, -2, 0>}
  29.    object {#declare clock_type = "R" #include "ClockP.inc" translate <1, -2, 0>}
  30.