Bu web sitesi JavaScript ile daha iyi çalışır.
Ana Sayfa
Yardım
Giriş Yap
heuzef
/
pannellum
şunun yansıması
https://github.com/mpetroff/pannellum.git
İzle
1
Yıldızla
0
Çatalla
0
Kod
Konular
0
Sürümler
22
Wiki
Aktivite
Kaynağa Gözat
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 yıl önce
committed by
Matthew Petroff
ebeveyn
c89710c031
işleme
7c162a039c
1 değiştirilmiş dosya
ile
4 ekleme
ve
0 silme
Görünümü Böl
Diff Seçenekleri
İstatistikleri Göster
Yama Dosyasını İndir
Diff Dosyasını İndir
+4
-0
src/js/pannellum.js
+ 4
- 0
src/js/pannellum.js
Dosyayı Görüntüle
@@ -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];
}
Yaz
Önizleme
Yükleniyor…
İptal
Kaydet