I am working on a raytracer in C++. On user input that describes the scene, I am given the final image resolution (i.e. width and height) and the field of view in the y direction. The field of view in the x direction will be determined by the image size. Most importantly, I want the world aspect ratio (distinct from the width and height that determine image aspect ratio) to always always 1; a sphere at the center of a screen will look like a circle, independent of the image aspect ratio (basically, changing the image resolution wouldn't cause the sphere to look like an elipse).
I thought an obvious answer was to multiple the field of view in the y direction with width/height ratio, but that doesn't seem to work out well.