home *** CD-ROM | disk | FTP | other *** search
/ TopWare 18: Liquid / Image.iso / liquid / top1164 / sphere.tpl < prev    next >
Text File  |  1994-01-17  |  786b  |  38 lines

  1. //Sphere.tpl
  2. /*
  3.  
  4. Since spheres are so common in ray traced graphics, POV-Ray has a highly
  5. optimized sphere primitive which renders much more quickly than the
  6. corresponding polynomial quadric shape. The syntax is:
  7.  
  8.      sphere { <CENTER>, RADIUS }
  9.  
  10. Where <CENTER> is a vector specifying the x,y,z coordinates of the center
  11. of the sphere and RADIUS is a float value specifying the radius.  You can
  12. also add translations, rotations, and scaling to the sphere. For example,
  13. the following two objects are identical:
  14.  
  15.   sphere { <0, 25, 0>, 10
  16.     pigment {Blue}
  17.  
  18.  
  19.   sphere { <0, 0, 0>, 1.0
  20.     pigment {Blue}
  21.     scale 10
  22.     translate y*25
  23.   }
  24.  
  25. */
  26.  
  27. sphere {
  28.   < ,  ,  >,
  29.   texture {
  30.     pigment {
  31.  
  32.  
  33.  
  34.  
  35.     }// end pigment
  36.   }// end texture
  37. }//end sphere
  38.