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

1    package graphics.raytracers.raytracer.tracer; 
2     
3    public class Eye { 
4        private Vec3f position = new Vec3f(0, 0, -1); 
5     
6        public Vec3f getPosition() { 
7            return position; 
8        } 
9    }