home *** CD-ROM | disk | FTP | other *** search
/ RISC DISC 3 / RISC_DISC_3.iso / resources / etexts / gems / gemsiv / vec_mat / ray / light.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-03-15  |  114 b   |  9 lines

  1. #include "Light.h"
  2.  
  3. istream& operator >> (istream& s, Light& a)
  4. {
  5. s >> *((Object3D*) &a);
  6. s >> a.col;
  7. return s;
  8. }
  9.