diff --git a/src/main/java/electrosphere/renderer/light/ItsBroken_DirectionalLight.java b/src/main/java/electrosphere/renderer/light/ItsBroken_DirectionalLight.java deleted file mode 100644 index 1aba3c8f..00000000 --- a/src/main/java/electrosphere/renderer/light/ItsBroken_DirectionalLight.java +++ /dev/null @@ -1,69 +0,0 @@ -package electrosphere.renderer.light; - -import org.joml.Vector3f; - -/** - * - * @author amaterasu - */ -public class ItsBroken_DirectionalLight { - Vector3f direction; - - Vector3f ambient; - Vector3f diffuse; - Vector3f specular; - - public void setDirection(Vector3f direction) { - this.direction = direction; - } - - public void setAmbient(Vector3f ambient) { - this.ambient = ambient; - } - - public void setDiffuse(Vector3f diffuse) { - this.diffuse = diffuse; - } - - public void setSpecular(Vector3f specular) { - this.specular = specular; - } - - public Vector3f getDirection() { - return direction; - } - - public Vector3f getAmbient() { - return ambient; - } - - public Vector3f getDiffuse() { - return diffuse; - } - - public Vector3f getSpecular() { - return specular; - } - - public ItsBroken_DirectionalLight(Vector3f direction){ - this.direction = direction; - ambient = new Vector3f(0.05f, 0.05f, 0.05f); - diffuse = new Vector3f(0.4f, 0.4f, 0.4f); - specular = new Vector3f(0.5f, 0.5f, 0.5f); - this.direction.normalize(); - ambient.normalize(); - diffuse.normalize(); - specular.normalize(); - } - - public ItsBroken_DirectionalLight(Vector3f direction, Vector3f color){ - this.direction = direction; - ambient = new Vector3f( color.x * 0.05f, color.y * 0.05f, color.z * 0.05f); - diffuse = new Vector3f( color.x * 0.4f, color.y * 0.4f, color.z * 0.4f); - specular = new Vector3f(color.x * 0.5f, color.y * 0.5f, color.z * 0.5f); - this.direction.normalize(); - ambient.normalize(); - diffuse.normalize(); - specular.normalize(); - } -}