First update

This commit is contained in:
Florian Richer (MrDev023) 2016-03-06 13:45:34 +01:00
commit 292abf9a57
28 changed files with 1886 additions and 0 deletions

View file

@ -0,0 +1,17 @@
package fr.technicalgames.light;
import fr.technicalgames.math.*;
public class SpotLight extends Light{
public SpotLight(Vector3f position, Vector3f intensities, float attenuation, float ambientCoefficient,
float coneAngle, Vector3f coneDirection) {
super(new Vector4f(position,1), intensities, attenuation, ambientCoefficient, coneAngle, coneDirection);
}
@Override
public void update() {
}
}