clean getFov

This commit is contained in:
MARCHAND MANON
2023-08-31 12:37:33 +02:00
committed by Matthieu Baumann
parent d2b444250e
commit c2dc476321

View File

@@ -1593,9 +1593,6 @@ export let Aladin = (function () {
var fovX = this.view.fov;
var s = this.getSize();
var fovY = s[1] / s[0] * fovX;
fovX = Math.min(fovX);
fovY = Math.min(fovY);
return [fovX, fovY];
};