Procházet zdrojové kódy

Remove redundant constraint on yaw in API (fixes #315).

pull/318/head
Matthew Petroff před 8 roky
rodič
revize
129bc0310d
1 změnil soubory, kde provedl 0 přidání a 6 odebrání
  1. +0
    -6
      src/js/pannellum.js

+ 0
- 6
src/js/pannellum.js Zobrazit soubor

@@ -2211,12 +2211,6 @@ this.getYaw = function() {
* @returns {Viewer} `this`
*/
this.setYaw = function(yaw, animated) {
while (yaw > 180) {
yaw -= 360;
}
while (yaw < -180) {
yaw += 360;
}
animated = animated == undefined ? 1000: Number(animated);
if (animated) {
animatedMove.yaw = {


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