diff options
author | sanine-a <sanine.not@pm.me> | 2020-11-29 15:16:42 -0600 |
---|---|---|
committer | sanine-a <sanine.not@pm.me> | 2020-11-29 15:16:42 -0600 |
commit | 140666204191b218b72274d8d14921c89a6631fd (patch) | |
tree | 8436c81dda007e934f6b5cadd41789c677306b44 /src/light/light.c | |
parent | 146d708c67172a05a62f944b16fdcb0dccc4713d (diff) |
refactor: eliminate src subdirectories for honey files
Diffstat (limited to 'src/light/light.c')
-rw-r--r-- | src/light/light.c | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/src/light/light.c b/src/light/light.c deleted file mode 100644 index 839d747..0000000 --- a/src/light/light.c +++ /dev/null @@ -1,20 +0,0 @@ -#include "light.h" - -void honey_point_light_new(honey_point_light* light, - float x, float y, float z, - float r, float g, float b, - float constant, - float linear, - float quadratic) { - light->position[0] = x; - light->position[1] = y; - light->position[2] = z; - - light->color[0] = r; - light->color[1] = g; - light->color[2] = b; - - light->constant = constant; - light->linear = linear; - light->quadratic = quadratic; -} |