I have a code that generates a bunch of *.pov
files for visualization using POV-Ray. Unfortunately, they are of different aspect ratios (width/height). That information is in the script in the form of the up/right vectors. However, when I render a script without any extra parameters, i.e. through povray test.pov
, POV-Ray forces the standard 4/3 aspect ratio. Therefore, images are distorted.
Question: Is there any way that the script may request a certain aspect ratio or resolution?
up y * 3.5/5.0
to get a 5/3.5 aspect ratio, then callingpovray test.pov
renders in 800x600, which has a 4/3 aspect ratio, so my image is stretched. – Halverson