package graphics.tracer; public class Light { private Vec3f position = new Vec3f(16, 8, -16); private Vec3f color = new Vec3f(1, 1, 1); public Vec3f getPosition() { return position; } public Vec3f getColor() { return color; } }