2013-05-01 08:46:16 +04:00
|
|
|
/*
|
|
|
|
* OpenSeadragon
|
|
|
|
*
|
|
|
|
* Copyright (C) 2009 CodePlex Foundation
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are
|
|
|
|
* met:
|
|
|
|
*
|
|
|
|
* - Redistributions of source code must retain the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* - Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* - Neither the name of CodePlex Foundation nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived from
|
|
|
|
* this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
|
|
|
|
* TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
|
|
|
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
|
|
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
|
|
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
|
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2011-12-06 07:50:25 +04:00
|
|
|
(function( $ ){
|
|
|
|
|
2012-01-25 23:14:02 +04:00
|
|
|
/**
|
2012-02-01 00:59:09 +04:00
|
|
|
* A Rectangle really represents a 2x2 matrix where each row represents a
|
|
|
|
* 2 dimensional vector component, the first is (x,y) and the second is
|
|
|
|
* (width, height). The latter component implies the equation of a simple
|
|
|
|
* plane.
|
|
|
|
*
|
2012-01-25 23:14:02 +04:00
|
|
|
* @class
|
2012-02-01 00:59:09 +04:00
|
|
|
* @param {Number} x The vector component 'x'.
|
|
|
|
* @param {Number} y The vector component 'y'.
|
|
|
|
* @param {Number} width The vector component 'height'.
|
|
|
|
* @param {Number} height The vector component 'width'.
|
|
|
|
* @property {Number} x The vector component 'x'.
|
|
|
|
* @property {Number} y The vector component 'y'.
|
|
|
|
* @property {Number} width The vector component 'width'.
|
|
|
|
* @property {Number} height The vector component 'height'.
|
2012-01-25 23:14:02 +04:00
|
|
|
*/
|
2011-12-30 03:16:51 +04:00
|
|
|
$.Rect = function( x, y, width, height ) {
|
|
|
|
this.x = typeof ( x ) == "number" ? x : 0;
|
|
|
|
this.y = typeof ( y ) == "number" ? y : 0;
|
|
|
|
this.width = typeof ( width ) == "number" ? width : 0;
|
|
|
|
this.height = typeof ( height ) == "number" ? height : 0;
|
2011-12-06 07:50:25 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
$.Rect.prototype = {
|
2012-02-01 00:59:09 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The aspect ratio is simply the ratio of width to height.
|
|
|
|
* @function
|
|
|
|
* @returns {Number} The ratio of width to height.
|
|
|
|
*/
|
2011-12-06 07:50:25 +04:00
|
|
|
getAspectRatio: function() {
|
|
|
|
return this.width / this.height;
|
|
|
|
},
|
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
/**
|
|
|
|
* Provides the coordinates of the upper-left corner of the rectanglea s a
|
|
|
|
* point.
|
|
|
|
* @function
|
|
|
|
* @returns {OpenSeadragon.Point} The coordinate of the upper-left corner of
|
|
|
|
* the rectangle.
|
|
|
|
*/
|
2011-12-06 07:50:25 +04:00
|
|
|
getTopLeft: function() {
|
2011-12-30 03:16:51 +04:00
|
|
|
return new $.Point( this.x, this.y );
|
2011-12-06 07:50:25 +04:00
|
|
|
},
|
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
/**
|
|
|
|
* Provides the coordinates of the bottom-right corner of the rectangle as a
|
|
|
|
* point.
|
|
|
|
* @function
|
|
|
|
* @returns {OpenSeadragon.Point} The coordinate of the bottom-right corner of
|
|
|
|
* the rectangle.
|
|
|
|
*/
|
2011-12-06 07:50:25 +04:00
|
|
|
getBottomRight: function() {
|
2011-12-30 03:16:51 +04:00
|
|
|
return new $.Point(
|
|
|
|
this.x + this.width,
|
|
|
|
this.y + this.height
|
|
|
|
);
|
2011-12-06 07:50:25 +04:00
|
|
|
},
|
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
/**
|
|
|
|
* Computes the center of the rectangle.
|
|
|
|
* @function
|
|
|
|
* @returns {OpenSeadragon.Point} The center of the rectangle as represnted
|
|
|
|
* as represented by a 2-dimensional vector (x,y)
|
|
|
|
*/
|
2011-12-06 07:50:25 +04:00
|
|
|
getCenter: function() {
|
2011-12-30 03:16:51 +04:00
|
|
|
return new $.Point(
|
|
|
|
this.x + this.width / 2.0,
|
|
|
|
this.y + this.height / 2.0
|
|
|
|
);
|
2011-12-06 07:50:25 +04:00
|
|
|
},
|
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
/**
|
|
|
|
* Returns the width and height component as a vector OpenSeadragon.Point
|
|
|
|
* @function
|
|
|
|
* @returns {OpenSeadragon.Point} The 2 dimensional vector represnting the
|
|
|
|
* the width and height of the rectangle.
|
|
|
|
*/
|
2011-12-06 07:50:25 +04:00
|
|
|
getSize: function() {
|
2011-12-30 03:16:51 +04:00
|
|
|
return new $.Point( this.width, this.height );
|
2011-12-06 07:50:25 +04:00
|
|
|
},
|
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
/**
|
|
|
|
* Determines if two Rectanlges have equivalent components.
|
|
|
|
* @function
|
|
|
|
* @param {OpenSeadragon.Rect} rectangle The Rectangle to compare to.
|
|
|
|
* @return {Boolean} 'true' if all components are equal, otherwise 'false'.
|
|
|
|
*/
|
2012-01-18 03:30:41 +04:00
|
|
|
equals: function( other ) {
|
2012-02-01 00:59:09 +04:00
|
|
|
return ( other instanceof $.Rect ) &&
|
2011-12-30 03:16:51 +04:00
|
|
|
( this.x === other.x ) &&
|
|
|
|
( this.y === other.y ) &&
|
|
|
|
( this.width === other.width ) &&
|
|
|
|
( this.height === other.height );
|
2011-12-06 07:50:25 +04:00
|
|
|
},
|
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
/**
|
|
|
|
* Provides a string representation of the retangle which is useful for
|
|
|
|
* debugging.
|
|
|
|
* @function
|
|
|
|
* @returns {String} A string representation of the rectangle.
|
|
|
|
*/
|
2011-12-06 07:50:25 +04:00
|
|
|
toString: function() {
|
2011-12-30 03:16:51 +04:00
|
|
|
return "[" +
|
2013-01-24 08:00:11 +04:00
|
|
|
Math.round(this.x*100) + "," +
|
|
|
|
Math.round(this.y*100) + "," +
|
|
|
|
Math.round(this.width*100) + "x" +
|
|
|
|
Math.round(this.height*100) +
|
2011-12-30 03:16:51 +04:00
|
|
|
"]";
|
2011-12-06 07:50:25 +04:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
|
2011-12-06 07:50:25 +04:00
|
|
|
}( OpenSeadragon ));
|