home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / pose1os2.zip / EXAMPLES / CHASE / SCENE1 / FLOOR.SIM < prev    next >
Text File  |  1995-05-06  |  590b  |  21 lines

  1. // -- exported variables for this object
  2. //
  3. // x ............ --
  4. // y ............   |-- Vector to normal of Plane (only one should be set)
  5. // z ............ --
  6. // offset ....... Numeric distance of displacement from the normal from origin
  7. // no_shadow .... A boolean (true or false) indicating whether this object
  8. //                casts a shadow in the scene
  9. // inverse ...... A boolean (true or false) indicating whether this object
  10. //                should be inverted
  11.  
  12. initialize {
  13.     x = 0;
  14.     y = 1;
  15.     z = 0;
  16.  
  17.     offset = -4;
  18.  
  19.     pigment.color = "White";
  20. }
  21.