Well, in my case, I'm creating a plugin where that zooms into a certain area, and I want to be able to use the plugin in every panorama, no matter the fov type.
Another example is: imagine you want to zoom into a certain point in a panorama and want to be sure that 20º in the vertical axis will be visible. If you are using VFOV, you can just zoom to fov=20 or higher. But if you are using, for instance, MFOV there's no straightforward way to do this. With this plugin you could do something like:
|
Quellcode
|
1
2
|
plugin[foo].convert( tmp, get(view.fovtype), 20, vfov);
zoomto( tmp );
|