home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 16 / CD_ASCQ_16_0994.iso / news / 2555 / povhlp / include.hlp < prev    next >
Encoding:
Text File  |  1994-07-04  |  790 b   |  16 lines

  1.     The language allows include files to be specified by placing the line:
  2.  #include "filename.inc" at any point in the input file.  The filename must
  3.  be enclosed in double quotes and may be up to 40 characters long (or your
  4.  computer's limit), including the two double-quote (") characters.
  5.  
  6.     The include file is read in as if it were inserted at that point in the
  7.  file.  Using include is the same as actually cutting and pasting the entire
  8.  contents of this file into your scene.
  9.  
  10.     Include files may be nested.  You may have at most 10 nested include
  11.  files. There is no limit on un-nested include files.
  12.  
  13.     Generally, include files have data for scenes, but are not scenes in
  14.  themselves.  By convention scene files end in .pov and include files end
  15.  with .inc.
  16.