Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
It's not the field of view angles that respect the width/height aspect ratios, but the tangents of the half-angles (i.e. tan(horizontalFOV/2)/tan(verticalFOV/2) = width/height). – MikeMx7f Nov 12 '12 at 3:01

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.