goat3d

view src/light.cc @ 63:cd7efb8757e1

resource files where mangled by the previous commit
author John Tsiombikas <nuclear@member.fsf.org>
date Tue, 01 Apr 2014 13:11:04 +0300
parents cd71f0b92f44
children dad392c710df
line source
1 #include "light.h"
3 using namespace g3dimpl;
5 Light::Light()
6 : color(1, 1, 1), attenuation(1, 0, 0)
7 {
8 max_dist = 0.0;
9 }
11 DirLight::DirLight()
12 : dir(0, 0, 1)
13 {
14 }
16 SpotLight::SpotLight()
17 {
18 inner_cone = DEG_TO_RAD(30);
19 outer_cone = DEG_TO_RAD(45);
20 }