-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlight.cpp
49 lines (41 loc) · 807 Bytes
/
light.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#include "light.h"
Light::Light(float x, float y, float z) : location(x,y,z), ambient(), diffuse(),
specular(), falloff(0.0), max_dist(-1.0)
{
}
void Light::setLocation(float x, float y, float z)
{
location = QVector3D(x,y,z);
}
void Light::setAmbient(float r, float g, float b)
{
ambient = RGB(r,g,b);
}
void Light::setAmbient(RGB rgb)
{
ambient = rgb;
}
void Light::setDiffuse(float r, float g, float b)
{
diffuse = RGB(r,g,b);
}
void Light::setDiffuse(RGB rgb)
{
diffuse = rgb;
}
void Light::setSpecular(float r, float g, float b)
{
specular = RGB(r,g,b);
}
void Light::setSpecular(RGB rgb)
{
specular = rgb;
}
void Light::setFalloff(float fo)
{
falloff = fo;
}
void Light::setMaxDistance(float md)
{
max_dist = md;
}