Lines Matching +defs:x +defs:y

95     this.imgsize = { 'x': 0, 'y': 0 };  property
98 this.scaleSize = { 'x': 0, 'y': 0 }; property
110 this.mark = { 'x': 0, 'y': 0 }; property
158 PanoJS.INITIAL_PAN = { 'x': .5, 'y': .5 }; property
366 motion = { 'x': 0, 'y': 0 }; property
580 coords = { 'x': 0, 'y': 0 }; property
610 var coords = { 'x': Math.floor(this.width / 2), 'y': Math.floor(this.height / 2) }; property
613 'x': (coords.x - this.x), property
614 'y': (coords.y - this.y) property
618 'x': Math.floor(before.x * Math.pow(2, direction)), property
619 'y': Math.floor(before.y * Math.pow(2, direction)) property
666 this.positionTiles({ 'x': (coords.x - this.mark.x), 'y': (coords.y - this.mark.y) }); property
685 'x': Math.floor((this.width / 2) - coords.x), property
686 'y': Math.floor((this.height / 2) - coords.y) property
708 'x': Math.min(x, Math.abs(target.x)) * (target.x < 0 ? -1 : 1), property
709 'y': Math.min(y, Math.abs(target.y)) * (target.y < 0 ? -1 : 1) property
721 'x': coords.x + motion.x, property
722 'y': coords.y + motion.y property
747 'x': Math.floor(this.width / 2), property
748 'y': Math.floor(this.height / 2) property
762 'x': Math.floor(this.width / 2), property
763 'y': Math.floor(this.height / 2) property
796 'x': (coords.x - this.mark.x), property
797 'y': (coords.y - this.mark.y) property
802 this.mark = { 'x': 0, 'y': 0 }; property
951 viewer.positionTiles({'x': 0, 'y': -PanoJS.MOVE_THROTTLE}, true); property
953 viewer.positionTiles({'x': -PanoJS.MOVE_THROTTLE, 'y': 0}, true); property
955 viewer.positionTiles({'x': 0, 'y': PanoJS.MOVE_THROTTLE}, true); property
957 viewer.positionTiles({'x': PanoJS.MOVE_THROTTLE, 'y': 0}, true); property
972 PanoJS.MoveEvent = function (x, y) { argument
977 PanoJS.ZoomEvent = function (x, y, level, percentage) { argument