00001 00002 00003 00004 00005 // ChangeLog is at the implementation file 00006 00007 #ifndef __VPPOINTLIGHT_H 00008 #define __VPPOINTLIGHT_H 00009 00010 #include "vplight.h" 00011 00013 00015 class VPPointLight : public VPLight { 00016 private: 00017 VPVector3D attenuation; 00018 public: 00019 VPPointLight(); 00020 VPPointLight(VPVector3D a, VPPoint4D l); 00021 void SetAttenuation( VPVector3D a ); 00022 VPVector3D GetAttenuation(); 00023 }; 00024 00025 #endif