home *** CD-ROM | disk | FTP | other *** search
/ PC World 1999 November / PCWorld_1999-11_cd.bin / Software / Servis / PovRay / povwin3.exe / %MAINDIR% / scenes / macros / local.inc next >
Encoding:
Text File  |  1999-10-05  |  493 b   |  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.