This website works better with JavaScript.
Почетна
Помоћ
Пријавите Се
heuzef
/
pannellum
огледало од
https://github.com/mpetroff/pannellum.git
Прати
1
Волим
0
Креирај огранак
0
Код
Дискусије
0
Издања
22
Вики
Activity
Преглед изворни кода
Fix yaw out of bounds in `mouseEventToCoords`.
If `config.yaw` is close to -180 or 180, `yaw` might be out of bounds.
pull/452/head
Tortila90
пре 7 година
committed by
Matthew Petroff
родитељ
c89710c031
комит
7c162a039c
1 измењених фајлова
са
4 додато
и
0 уклоњено
Подељен поглед
Diff Options
Show Stats
Download Patch File
Download Diff File
+4
-0
src/js/pannellum.js
+ 4
- 0
src/js/pannellum.js
Прегледај датотеку
@@ -704,6 +704,10 @@ function mouseEventToCoords(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;
if (yaw < -180)
yaw += 360;
if (yaw > 180)
yaw -= 360;
return [pitch, yaw];
}
Write
Preview
Loading…
Откажи
Сачувај