Explorar el Código

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

pull/234/head
Matthew Petroff hace 8 años
padre
commit
a30ea8ca5c
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. +2
    -2
      src/js/pannellum.js

+ 2
- 2
src/js/pannellum.js Ver fichero

@@ -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;


Cargando…
Cancelar
Guardar