#ifndef __SUNCOLOR_H__ #define __SUNCOLOR_H__ //#include "Vector3.h" namespace CHCDemoEngine{ class Vector3; } /** Class describing a plane in 3D space. */ class SunColor { public: void Compute(const CHCDemoEngine::Vector3 &sunDir, CHCDemoEngine::Vector3 &ambient, CHCDemoEngine::Vector3 &diffuse) const; }; #endif