Lines Matching refs:y

97 … this.imgsize.y = (typeof options.imageHeight == 'undefined' ? -1 : parseInt(options.imageHeight));
108 this.y = 0;
274 this.y = Math.floor(this.scaleSize.y * 0.5 - this.height * 0.5) * -1;
311 var inv = Math.max(this.imgsize.x, this.imgsize.y) /
314 this.scaleSize.y = this.imgsize.y / inv;
374 tile.posy = (tile.yIndex * this.tileSize) + this.y + motion.y;
408 tile.posy = (tile.yIndex * this.tileSize) + this.y + motion.y;
420 tile.posy = (tile.yIndex * this.tileSize) + this.y + motion.y;
449 this.y += motion.y;
471 var low = tile.yIndex >= Math.ceil(this.scaleSize.y / this.tileSize);
570 new PanoJS.ZoomEvent(this.x, this.y, this.zoomLevel, percentage)
587 this.y + (coords.y - this.mark.y)
614 'y': (coords.y - this.y) property in PanoJS.zoom.before
619 'y': Math.floor(before.y * Math.pow(2, direction)) property in PanoJS.zoom.after
623 this.y = coords.y - after.y;
666 this.positionTiles({ 'x': (coords.x - this.mark.x), 'y': (coords.y - this.mark.y) });
681 coords.y += this.y;
686 'y': Math.floor((this.height / 2) - coords.y) property in PanoJS.recenter.motion
689 if (motion.x == 0 && motion.y == 0) {
695 var x, y;
699 y = this.slideAcceleration;
702 var slope = Math.abs(target.y / target.x);
704 y = Math.round(slope * x);
709 'y': Math.min(y, Math.abs(target.y)) * (target.y < 0 ? -1 : 1) property in PanoJS.recenter.motion
722 'y': coords.y + motion.y property in PanoJS.recenter.newcoords
768 this.y += (after.y - before.y);
797 'y': (coords.y - this.mark.y) property in PanoJS.release.motion
801 this.y += motion.y;
823 coords.y < this.y ||
825 coords.y > (this.tileSize * Math.pow(2, this.zoomLevel) + this.y));
972 PanoJS.MoveEvent = function (x, y) { argument
974 this.y = y;
977 PanoJS.ZoomEvent = function (x, y, level, percentage) { argument
979 this.y = y;