home *** CD-ROM | disk | FTP | other *** search
/ BCI NET 2 / BCI NET 2.iso / archives / programming / source / graphicgems4.lha / GemsIV / vec_mat / ray / Light.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-02-06  |  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.