Procházet zdrojové kódy

Add center pointing and HFOV to hot spot debug.

pull/86/head
Matthew Petroff před 9 roky
rodič
revize
2e7f8365d3
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  1. +2
    -1
      src/js/pannellum.js

+ 2
- 1
src/js/pannellum.js Zobrazit soubor

@@ -482,7 +482,8 @@ function onDocumentMouseDown(event) {
var root = Math.sqrt(x*x + a*a);
var pitch = Math.atan((y * c + focal * s) / root) * 180 / Math.PI;
var yaw = Math.atan2(x / root, a / root) * 180 / Math.PI + config.yaw;
console.log('Pitch: ' + pitch + ', Yaw: ' + yaw);
console.log('Pitch: ' + pitch + ', Yaw: ' + yaw + ', Center Pitch: ' +
config.pitch + ', Center Yaw: ' + config.yaw + ', HFOV: ' + config.hfov);
}
// Turn off auto-rotation if enabled


Načítá se…
Zrušit
Uložit