Selaa lähdekoodia

Allow minimum and maximum HFOV to be equal (fixes #207).

pull/234/head
Matthew Petroff 8 vuotta sitten
vanhempi
commit
a30ea8ca5c
1 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa
  1. +2
    -2
      src/js/pannellum.js

+ 2
- 2
src/js/pannellum.js Näytä tiedosto

@@ -1913,9 +1913,9 @@ function constrainHfov(hfov) {
if (config.type == 'multires' && renderer) {
minHfov = Math.min(minHfov, renderer.getCanvas().width / (config.multiRes.cubeResolution / 90 * 0.9));
}
if (minHfov >= config.maxHfov) {
if (minHfov > config.maxHfov) {
// Don't change view if bounds don't make sense
console.log('HFOV bounds do not make sense (minHfov >= maxHfov).')
console.log('HFOV bounds do not make sense (minHfov > maxHfov).')
return config.hfov;
} if (hfov < minHfov) {
return minHfov;


Ladataan…
Peruuta
Tallenna