package graphics.tracer;

public class Eye {
  private Vec3f position = new Vec3f(0, 0, -1);

  public Vec3f getPosition() {
    return position;
  }
}