/Users/lyon/j4p/src/graphics/raytracers/raytracer/tracer/Light.java

1    package graphics.raytracers.raytracer.tracer; 
2     
3    public class Light { 
4        private Vec3f position = new Vec3f(16, 8, -16); 
5        private Vec3f color = new Vec3f(1, 1, 1); 
6     
7        public Vec3f getPosition() { 
8            return position; 
9        } 
10    
11       public Vec3f getColor() { 
12           return color; 
13       } 
14   }