home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-2.iso / Unix / graphics / rayshade.4.0.README < prev    next >
Encoding:
Text File  |  1991-02-13  |  8.5 KB  |  190 lines

  1. This is the Beta release of rayshade version 4.0, a ray tracing program.
  2. Rayshade reads a multi-line ASCII file describing a scene to be rendered
  3. and produces a Utah Raster Toolkit "RLE" format file containing the
  4. ray traced image.
  5.  
  6. Rayshade features:
  7.  
  8.     Eleven primitives (blob, box, cone, cylinder, height field,
  9.     plane, polygon, sphere, torus, flat- and Phong-shaded triangle)
  10.  
  11.     Aggregate objects
  12.  
  13.     Constructive solid geometry
  14.  
  15.     Point, directional, extended, spot, and quadrilateral light sources
  16.  
  17.     Solid procedural texturing, bump mapping, and
  18.         2D "image" texture mapping
  19.  
  20.     Antialiasing through adaptive supersampling or "jittered" sampling
  21.  
  22.     Arbitrary linear transformations on objects and texture/bump maps.
  23.  
  24.     Use of uniform spatial subdivision or hierarchy of bounding
  25.         volumes to speed rendering
  26.  
  27.     Options to facilitate rendering of stereo pairs
  28.  
  29.     
  30.  
  31. This is Really and Truly a Beta release:  No patches will be issued
  32. to upgrade from this distribution and the 'official' release.  The
  33. documentation is spotty, and there is no proper 'man' page.
  34.  
  35. There are many differences between rayshade versions 3.0 and 4.0.  In
  36. particular, the input syntax has changed.  Input files created for
  37. version 3.0 must be converted to version 4.0 syntax using the provided
  38. conversion utility (rsconvert).
  39.  
  40. Rayshade v4.0 Beta has been tested on several different UNIX-based computers,
  41. including: SGI 4D, IBM RS6000, Sun Sparcstation 1, Sun 3/160, DECstation,
  42. Apollo DN10000.  If your machine has a C compiler, enough memory
  43. (at least 2Mb), and runs something resembling UNIX, rayshade should be fairly
  44. easy to port.  Be warned that rayshade uses yacc and lex to process input
  45. files.  If you do not have lex and yacc, try to get flex and bison from
  46. the Free Software Foundation folks (ftp to prep.ai.mit.edu).
  47.  
  48. Rayshade uses a Configuration script in order to determine how it should
  49. be compiled.  This means that if you're not runing under UNIX, you'll
  50. probably have to create a config.h and edit the Makefiles by hand.
  51. If you create a config.h file and/or Makefiles for use in an non-UNIX
  52. environment, send them to us and we will make it available for use by
  53. others.  The prototype config.H file may be of some help.
  54.  
  55. Normally, rayshade makes use of the Utah Raster toolkit.  You are
  56. strongly encouraged to get a copy of the toolkit, as it provides a
  57. host of useful tools for image manipulation and a library for reading/reading
  58. the toolkit's "RLE" format image files.  "blurb.urt" is the "blurb" file from
  59. the latest distribution of the toolkit.  Also of interest is the
  60. "fbm" library, available from nl.cs.cmu.edu:/usr/mlm/ftp/fbm.tar.Z, which
  61. provides additional tools for converting Utah Raster format images
  62. to/from other formats.
  63.  
  64. If you do not want to or cannot use the Utah Raster toolkit, rayshade
  65. can be configured to create image files using a generic format
  66. identical to that used by Mark VandeWettering's "mtv" ray tracer.
  67.  
  68. Rayshade consists of a number of libraries (residing in the lib*
  69. directories) and an application (rayshade proper) that is
  70. linked against those libraries.  To compile, run the Configure script to
  71. generate config.h and the Makefiles, then run "make depend"
  72. followed by "make".  If the Configuration script fails, or if
  73. it can't determine a way to generate dependencies, you'll probably
  74. have to edit the Makefiles or extract them from the Makefile.SH scripts
  75. by hand.  Don't be overly alarmed if there are a few non-terminating error
  76. messages while running "make depend".
  77.  
  78. The Doc directory contains a User's Guide (in the Guide directory),
  79. as well as a quick-reference sheet and some information that might
  80. be useful in porting or modifying rayshade.  To create a formatted
  81. version of the User's Guide, you'll need LaTeX.  If you don't have
  82. LaTeX, a postscript version of the Guide is available via anonymous
  83. ftp from weedeater.math.yale.edu (see below).
  84.  
  85. The etc directory contains miscellaneous goodies, including the source
  86. to a filter to convert rayshade v3.0 input to rayshade 4.0.
  87. The Example directory contains example input files, which may be
  88. used to test rayshade and to familiarize yourself with rayshade's input
  89. syntax.  You can also run any one of Eric Haines'
  90. Standard Procedural Databases through awk using the etc/nff2shade.awk
  91. script, and then feed the results to rayshade.  Note that for several
  92. of the databases, you will need to tweak the data a bit to achieve
  93. optimal runtimes.  See spd2shade.awk for details.
  94.  
  95. You are encouraged to make use of cpp in the design of your input files.
  96. If available, rayshade will automatically feed input files through
  97. cpp for you.
  98.  
  99. Rayshade was not designed to be, nor is it, the be-all and end-all of
  100. ray tracers.  It was meant to be reasonably fast, portable, and easy to 
  101. modify.  It has some nice features which allow you to produce
  102. pretty pictures, but there are countless extensions, modifications,
  103. and improvements which could be made.  There are many routines which may be
  104. optimized and many features which could be added.  For a list of suggested
  105. improvements and projects see "TODO".  You are encouraged to modify the
  106. source code left and right.
  107.  
  108. It is hoped that the 'official' release will include a library
  109. that provides a C interface to the various ray tracing libraries.
  110. While there is currently no documentation for the libraries, it
  111. should be easy for you to add your own primitives, textures, aggregates,
  112. and light sources by looking at the code and sending mail if you get
  113. stuck.
  114.  
  115. It is also hoped that the modular nature of the primitive, aggregate,
  116. texture, and light source libraries will make it possible for
  117. people to write their own code and to "swap" objects, textures, and
  118. the like over the net.  The object interfaces are far from perfect,
  119. but it is hoped that they provide a reasonable balance between
  120. modularity and speed.
  121.  
  122. Additional rayshade goodies are available via anonymous ftp from
  123. weedeater.math.yale.edu (130.132.23.17) in pub/rayshade.4.0.
  124. If you have contributions of new objects, textures, input files,
  125. configuration files, or images to make, feel free to send us email or
  126. to drop off a copy via ftp in the "incoming" directory on weedeater.
  127.  
  128.  
  129. The first version of rayshade was written by Craig Kolb, David P. Dobkin,
  130. and David C. Hoffman during 1987-1988, and was heavily based on an
  131. "introductory" public domain ray tracer written by Roman Kuchkuda.
  132. Rayshade v3.0 was written by Craig Kolb and released in the Fall of 1989.
  133. Rayshade v4.0 was written by Craig Kolb and Rod Bogart during 1990.
  134.  
  135. Rayshade was made possible by many people who have made suggestions,
  136. fixed bugs, and who have been all-around good sports about the whole thing.
  137.  
  138. Thanks to Gavin Bell, David Dobkin, Eric Haines, Lefteris Koutsofios,
  139. Ken Musgrave, Przemek Prusinkiewicz, and Allan Snider for their
  140. encouragement, comments, and willingness to be on the Front Lines.
  141.  
  142. Thanks to Roman Kuchkuda for providing such a solid base upon which
  143. to build.
  144.  
  145. Special thanks to Robert Skinner for providing the Noise(), DNoise(),
  146. and other texturing functions and allowing them to be redistributed.
  147.  
  148. Pat Hanrahan's OOGL provided the spirit (if not the letter) of the
  149. modularity of rayshade v4.0.  Thanks to Pat and to Mark VandeWettering
  150. for the 'net tracer' conversations and for the inspiration to do something
  151. to clean up rayshade.
  152.  
  153. Thanks to Marc Andreessen, Ray Bellis, Dominique Boisvert, William Bouma,
  154. Allen Braunsdorf, Jeff Butterworth, Nick Carriero, Nancy Everson, Tom Friedel,
  155. Robert Funchess, David Gelernter, Mike Gigante, Ed Herderick, John Knuston,
  156. Raphael Manfredi, Lee Moore, Dietmar Saupe, Brian Wyvill,
  157. and everybody else for their bugfixes, suggestions, input files,
  158. encouragement, and other feedback.
  159.  
  160. Thanks also to Mark Podlipec for providing the blob and torus objects.
  161.  
  162. Thanks to Jochen Schwarze for the cubic and quartic root-finding functions.
  163. His code, and a host of other useful routines, can be found in
  164. "Graphics Gems", edited by Andrew Glassner.
  165.  
  166. Finally, thanks to Benoit Mandelbrot for his support and inspiration in
  167. this and other endeavors.
  168.  
  169. If you find any bugs, make any useful extensions, have a nice input
  170. file, port rayshade to a new environment, or need assistance understanding a
  171. particularly braindamaged section of code, please let us know.  We can be most
  172. easily reached by email.
  173.  
  174. Once you start using rayshade, send a message to
  175. rayshade@weedeater.math.yale.edu and you'll be added to the rayshade
  176. mailing list.
  177.  
  178. Craig Kolb
  179. Rod Bogart
  180. 13 Feb 91
  181. rayshade@weedeater.math.yale.edu
  182.  
  183. Craig Kolb
  184. Department of Mathematics
  185. Yale University
  186. 10 Hillhouse Ave.
  187. Box 2155 Yale Station
  188. New Haven, CT  06520-2155
  189. (Until September, 1991)
  190.