X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;ds=sidebyside;f=source%2Flight.h;h=31dc3c0db709285c7f918820752b9c668d2ddcbf;hb=HEAD;hp=6a6868412f7614a70e2241f02f2871d2d0077437;hpb=c1405286754104ddc044dddbb0a3505a9a5e3d4a;p=libs%2Fgl.git diff --git a/source/light.h b/source/light.h deleted file mode 100644 index 6a686841..00000000 --- a/source/light.h +++ /dev/null @@ -1,45 +0,0 @@ -/* $Id$ - -This file is part of libmspgl -Copyright © 2007 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - -#ifndef MSP_GL_LIGHT_H_ -#define MSP_GL_LIGHT_H_ - -#include "color.h" - -namespace Msp { -namespace GL { - -class Light -{ -private: - Color ambient; - Color diffuse; - Color specular; - float x, y, z, w; - float sdx, sdy, sdz; - float spot_exp; - float spot_cutoff; - float attenuation[3]; - - static unsigned current; - -public: - Light(); - void set_ambient(const Color &c); - void set_diffuse(const Color &c); - void set_specular(const Color &c); - void set_position(float, float, float, float); - void apply() const; - void apply_to(unsigned) const; - - static void activate(unsigned); -}; - -} // namespace GL -} // namespace Msp - -#endif