home *** CD-ROM | disk | FTP | other *** search
/ Freelog Special Edition 9 / FreelogHS09.iso / Pov / Dos / povmsdos.exe / POVMSDOS.ZIP / SCENES / MACROS / LOCAL.INC next >
Text File  |  1997-10-16  |  493b  |  15 lines

  1. // Persistence of Vision Ray Tracer POV-Ray 3.1 Sample Scene
  2. // by Chris Young
  3. // LOCAL.INC demonstrates basic use of a temporary local identifier
  4. // using the #local directive.
  5. #debug "Doing #include \"local.inc\"\n"
  6.  
  7. // The global version of "Thing" is a red sphere.
  8. #local Thing = box{-1,1 pigment{Blue}}
  9.  
  10. // Center object in scene is the local blue box.
  11. object{Thing}
  12.  
  13. // This object will disapear when we exit "local.inc"
  14. #local Local_Item = cylinder{-1,1,1 pigment{Green}}
  15.