#ifndef LIGHT_H #define LIGHT_H #include "color.h" #include "lin_alg.h" struct Light { Color c; float I; vector3d pt; }; #endif