2013-05-01 08:46:16 +04:00
|
|
|
/*
|
2013-05-14 08:00:24 +04:00
|
|
|
* OpenSeadragon - Rect
|
2013-05-01 08:46:16 +04:00
|
|
|
*
|
|
|
|
* Copyright (C) 2009 CodePlex Foundation
|
2013-05-14 07:32:09 +04:00
|
|
|
* Copyright (C) 2010-2013 OpenSeadragon contributors
|
2013-05-01 08:46:16 +04:00
|
|
|
*
|
|
|
|
* 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( $ ){
|
2013-06-19 21:33:25 +04:00
|
|
|
|
2012-01-25 23:14:02 +04:00
|
|
|
/**
|
2013-11-25 20:48:44 +04:00
|
|
|
* @class Rect
|
2015-11-27 01:25:50 +03:00
|
|
|
* @classdesc A Rectangle is described by it top left coordinates (x, y), width,
|
|
|
|
* height and degrees of rotation around (x, y).
|
|
|
|
* Note that the coordinate system used is the one commonly used with images:
|
|
|
|
* x increases when going to the right
|
|
|
|
* y increases when going to the bottom
|
|
|
|
* degrees increases clockwise with 0 being the horizontal
|
2012-02-01 00:59:09 +04:00
|
|
|
*
|
2013-11-16 10:19:53 +04:00
|
|
|
* @memberof OpenSeadragon
|
2015-11-27 01:25:50 +03:00
|
|
|
* @param {Object} options
|
|
|
|
* @param {Number} options.x X coordinate of the top left corner of the rectangle.
|
|
|
|
* @param {Number} options.y Y coordinate of the top left corner of the rectangle.
|
|
|
|
* @param {Number} options.width Width of the rectangle.
|
|
|
|
* @param {Number} options.height Height of the rectangle.
|
|
|
|
* @param {Number} options.degrees Rotation of the rectangle around (x,y) in degrees.
|
|
|
|
* @param {Number} [x] Deprecated: The vector component 'x'.
|
|
|
|
* @param {Number} [y] Deprecated: The vector component 'y'.
|
|
|
|
* @param {Number} [width] Deprecated: The vector component 'width'.
|
|
|
|
* @param {Number} [height] Deprecated: The vector component 'height'.
|
2012-01-25 23:14:02 +04:00
|
|
|
*/
|
2015-11-27 01:25:50 +03:00
|
|
|
$.Rect = function(x, y, width, height) {
|
|
|
|
|
|
|
|
var options = x;
|
|
|
|
if (!$.isPlainObject(options)) {
|
|
|
|
options = {
|
|
|
|
x: x,
|
|
|
|
y: y,
|
|
|
|
width: width,
|
|
|
|
height: height
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2013-11-25 20:48:44 +04:00
|
|
|
/**
|
|
|
|
* The vector component 'x'.
|
|
|
|
* @member {Number} x
|
|
|
|
* @memberof OpenSeadragon.Rect#
|
|
|
|
*/
|
2015-11-27 01:25:50 +03:00
|
|
|
this.x = typeof(options.x) === "number" ? options.x : 0;
|
2013-11-25 20:48:44 +04:00
|
|
|
/**
|
|
|
|
* The vector component 'y'.
|
|
|
|
* @member {Number} y
|
|
|
|
* @memberof OpenSeadragon.Rect#
|
|
|
|
*/
|
2015-11-27 01:25:50 +03:00
|
|
|
this.y = typeof(options.y) === "number" ? options.y : 0;
|
2013-11-25 20:48:44 +04:00
|
|
|
/**
|
|
|
|
* The vector component 'width'.
|
|
|
|
* @member {Number} width
|
|
|
|
* @memberof OpenSeadragon.Rect#
|
|
|
|
*/
|
2015-11-27 01:25:50 +03:00
|
|
|
this.width = typeof(options.width) === "number" ? options.width : 0;
|
2013-11-25 20:48:44 +04:00
|
|
|
/**
|
|
|
|
* The vector component 'height'.
|
|
|
|
* @member {Number} height
|
|
|
|
* @memberof OpenSeadragon.Rect#
|
|
|
|
*/
|
2015-11-27 01:25:50 +03:00
|
|
|
this.height = typeof(options.height) === "number" ? options.height : 0;
|
|
|
|
|
|
|
|
this.degrees = typeof(options.degrees) === "number" ? options.degrees : 0;
|
2011-12-06 07:50:25 +04:00
|
|
|
};
|
|
|
|
|
2013-11-16 10:19:53 +04:00
|
|
|
$.Rect.prototype = /** @lends OpenSeadragon.Rect.prototype */{
|
2014-08-19 03:04:49 +04:00
|
|
|
/**
|
|
|
|
* @function
|
|
|
|
* @returns {OpenSeadragon.Rect} a duplicate of this Rect
|
|
|
|
*/
|
|
|
|
clone: function() {
|
2015-11-27 01:25:50 +03:00
|
|
|
return new $.Rect({
|
|
|
|
x: this.x,
|
|
|
|
y: this.y,
|
|
|
|
width: this.width,
|
|
|
|
height: this.height,
|
|
|
|
degrees: this.degrees
|
|
|
|
});
|
2014-08-19 03:04:49 +04:00
|
|
|
},
|
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
|
|
|
/**
|
2013-08-14 01:39:22 +04:00
|
|
|
* Provides the coordinates of the upper-left corner of the rectangle as a
|
2012-02-01 00:59:09 +04:00
|
|
|
* 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() {
|
2013-08-14 01:39:22 +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() {
|
2015-11-27 01:25:50 +03:00
|
|
|
return new $.Point(this.x + this.width, this.y + this.height)
|
|
|
|
.rotate(this.degrees, this.getTopLeft());
|
2011-12-06 07:50:25 +04:00
|
|
|
},
|
|
|
|
|
2013-08-14 01:39:22 +04:00
|
|
|
/**
|
|
|
|
* Provides the coordinates of the top-right corner of the rectangle as a
|
|
|
|
* point.
|
|
|
|
* @function
|
|
|
|
* @returns {OpenSeadragon.Point} The coordinate of the top-right corner of
|
|
|
|
* the rectangle.
|
|
|
|
*/
|
|
|
|
getTopRight: function() {
|
2015-11-27 01:25:50 +03:00
|
|
|
return new $.Point(this.x + this.width, this.y)
|
|
|
|
.rotate(this.degrees, this.getTopLeft());
|
2013-08-14 01:39:22 +04:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Provides the coordinates of the bottom-left corner of the rectangle as a
|
|
|
|
* point.
|
|
|
|
* @function
|
|
|
|
* @returns {OpenSeadragon.Point} The coordinate of the bottom-left corner of
|
|
|
|
* the rectangle.
|
|
|
|
*/
|
|
|
|
getBottomLeft: function() {
|
2015-11-27 01:25:50 +03:00
|
|
|
return new $.Point(this.x, this.y + this.height)
|
|
|
|
.rotate(this.degrees, this.getTopLeft());
|
2013-08-14 01:39:22 +04:00
|
|
|
},
|
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
/**
|
|
|
|
* Computes the center of the rectangle.
|
|
|
|
* @function
|
2013-08-14 01:39:22 +04:00
|
|
|
* @returns {OpenSeadragon.Point} The center of the rectangle as represented
|
2012-02-01 00:59:09 +04:00
|
|
|
* 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
|
2015-11-27 01:25:50 +03:00
|
|
|
).rotate(this.degrees, this.getTopLeft());
|
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
|
2013-08-14 01:39:22 +04:00
|
|
|
* @returns {OpenSeadragon.Point} The 2 dimensional vector representing the
|
2012-02-01 00:59:09 +04:00
|
|
|
* 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
|
|
|
/**
|
2013-08-14 01:39:22 +04:00
|
|
|
* Determines if two Rectangles have equivalent components.
|
2012-02-01 00:59:09 +04:00
|
|
|
* @function
|
|
|
|
* @param {OpenSeadragon.Rect} rectangle The Rectangle to compare to.
|
|
|
|
* @return {Boolean} 'true' if all components are equal, otherwise 'false'.
|
|
|
|
*/
|
2015-11-27 01:25:50 +03:00
|
|
|
equals: function(other) {
|
|
|
|
return (other instanceof $.Rect) &&
|
|
|
|
this.x === other.x &&
|
|
|
|
this.y === other.y &&
|
|
|
|
this.width === other.width &&
|
|
|
|
this.height === other.height &&
|
|
|
|
this.degrees === other.degrees;
|
2011-12-06 07:50:25 +04:00
|
|
|
},
|
|
|
|
|
2014-10-29 19:42:19 +03:00
|
|
|
/**
|
2015-11-27 01:25:50 +03:00
|
|
|
* Multiply all dimensions (except degrees) in this Rect by a factor and
|
|
|
|
* return a new Rect.
|
2014-10-29 19:42:19 +03:00
|
|
|
* @function
|
|
|
|
* @param {Number} factor The factor to multiply vector components.
|
|
|
|
* @returns {OpenSeadragon.Rect} A new rect representing the multiplication
|
|
|
|
* of the vector components by the factor
|
|
|
|
*/
|
2015-11-27 01:25:50 +03:00
|
|
|
times: function(factor) {
|
|
|
|
return new $.Rect({
|
|
|
|
x: this.x * factor,
|
|
|
|
y: this.y * factor,
|
|
|
|
width: this.width * factor,
|
|
|
|
height: this.height * factor,
|
|
|
|
degrees: this.degrees
|
|
|
|
});
|
2014-10-29 19:42:19 +03:00
|
|
|
},
|
|
|
|
|
2015-11-05 17:31:13 +03:00
|
|
|
/**
|
|
|
|
* Translate/move this Rect by a vector and return new Rect.
|
|
|
|
* @function
|
|
|
|
* @param {OpenSeadragon.Point} delta The translation vector.
|
|
|
|
* @returns {OpenSeadragon.Rect} A new rect with altered position
|
|
|
|
*/
|
2015-11-27 01:25:50 +03:00
|
|
|
translate: function(delta) {
|
|
|
|
return new $.Rect({
|
|
|
|
x: this.x + delta.x,
|
|
|
|
y: this.y + delta.y,
|
|
|
|
width: this.width,
|
|
|
|
height: this.height,
|
|
|
|
degrees: this.degrees
|
|
|
|
});
|
2015-11-05 17:31:13 +03:00
|
|
|
},
|
|
|
|
|
2015-01-14 02:31:52 +03:00
|
|
|
/**
|
|
|
|
* Returns the smallest rectangle that will contain this and the given rectangle.
|
|
|
|
* @param {OpenSeadragon.Rect} rect
|
|
|
|
* @return {OpenSeadragon.Rect} The new rectangle.
|
|
|
|
*/
|
|
|
|
// ----------
|
|
|
|
union: function(rect) {
|
2015-11-27 01:25:50 +03:00
|
|
|
if (this.degrees !== 0 || rect.degrees !== 0) {
|
|
|
|
throw new Error('Only union of non rotated rectangles are supported.');
|
|
|
|
}
|
2015-01-14 02:31:52 +03:00
|
|
|
var left = Math.min(this.x, rect.x);
|
|
|
|
var top = Math.min(this.y, rect.y);
|
|
|
|
var right = Math.max(this.x + this.width, rect.x + rect.width);
|
|
|
|
var bottom = Math.max(this.y + this.height, rect.y + rect.height);
|
|
|
|
|
2015-11-27 01:25:50 +03:00
|
|
|
return new $.Rect({
|
|
|
|
left: left,
|
|
|
|
top: top,
|
|
|
|
width: right - left,
|
|
|
|
height: bottom - top
|
|
|
|
});
|
2015-01-14 02:31:52 +03:00
|
|
|
},
|
|
|
|
|
2012-02-01 00:59:09 +04:00
|
|
|
/**
|
2015-11-27 01:25:50 +03:00
|
|
|
* Rotates a rectangle around a point.
|
2013-08-14 01:39:22 +04:00
|
|
|
* @function
|
|
|
|
* @param {Number} degrees The angle in degrees to rotate.
|
|
|
|
* @param {OpenSeadragon.Point} pivot The point about which to rotate.
|
|
|
|
* Defaults to the center of the rectangle.
|
|
|
|
* @return {OpenSeadragon.Rect}
|
|
|
|
*/
|
2015-11-27 01:25:50 +03:00
|
|
|
rotate: function(degrees, pivot) {
|
|
|
|
degrees = (degrees + 360) % 360;
|
|
|
|
if (degrees === 0) {
|
|
|
|
return this.clone();
|
2013-08-16 02:15:20 +04:00
|
|
|
}
|
|
|
|
|
2013-08-14 01:39:22 +04:00
|
|
|
pivot = pivot || this.getCenter();
|
2015-11-27 01:25:50 +03:00
|
|
|
var newTopLeft = this.getTopLeft().rotate(degrees, pivot);
|
|
|
|
var newTopRight = this.getTopRight().rotate(degrees, pivot);
|
2013-08-14 01:39:22 +04:00
|
|
|
|
2015-11-27 01:25:50 +03:00
|
|
|
var diff = newTopRight.minus(newTopLeft);
|
|
|
|
var radians = Math.atan(diff.y / diff.x);
|
|
|
|
if (diff.x < 0) {
|
|
|
|
radians += Math.PI;
|
|
|
|
} else if (diff.y < 0) {
|
|
|
|
radians += 2 * Math.PI;
|
2013-08-14 01:39:22 +04:00
|
|
|
}
|
2015-11-27 01:25:50 +03:00
|
|
|
return new $.Rect({
|
|
|
|
x: newTopLeft.x,
|
|
|
|
y: newTopLeft.y,
|
|
|
|
width: this.width,
|
|
|
|
height: this.height,
|
|
|
|
degrees: radians / Math.PI * 180
|
|
|
|
});
|
|
|
|
},
|
2013-08-14 01:39:22 +04:00
|
|
|
|
2015-11-27 01:25:50 +03:00
|
|
|
/**
|
|
|
|
* Retrieves the smallest horizontal (degrees=0) rectangle which contains
|
|
|
|
* this rectangle.
|
|
|
|
* @returns {OpenSeadrayon.Rect}
|
|
|
|
*/
|
|
|
|
getBoundingBox: function() {
|
|
|
|
if (this.degrees === 0) {
|
|
|
|
return this.clone();
|
|
|
|
}
|
|
|
|
var topLeft = this.getTopLeft();
|
|
|
|
var topRight = this.getTopRight();
|
|
|
|
var bottomLeft = this.getBottomLeft();
|
|
|
|
var bottomRight = this.getBottomRight();
|
|
|
|
var minX = Math.min(topLeft.x, topRight.x, bottomLeft.x, bottomRight.x);
|
|
|
|
var maxX = Math.max(topLeft.x, topRight.x, bottomLeft.x, bottomRight.x);
|
|
|
|
var minY = Math.min(topLeft.y, topRight.y, bottomLeft.y, bottomRight.y);
|
|
|
|
var maxY = Math.max(topLeft.y, topRight.y, bottomLeft.y, bottomRight.y);
|
|
|
|
return new $.Rect({
|
|
|
|
x: minX,
|
|
|
|
y: minY,
|
|
|
|
width: maxX - minX,
|
|
|
|
height: maxY - minY
|
|
|
|
});
|
2013-08-14 01:39:22 +04:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Provides a string representation of the rectangle which is useful for
|
2012-02-01 00:59:09 +04:00
|
|
|
* debugging.
|
|
|
|
* @function
|
|
|
|
* @returns {String} A string representation of the rectangle.
|
|
|
|
*/
|
2011-12-06 07:50:25 +04:00
|
|
|
toString: function() {
|
2013-06-19 21:33:25 +04:00
|
|
|
return "[" +
|
2015-11-27 01:25:50 +03:00
|
|
|
(Math.round(this.x * 100) / 100) + "," +
|
|
|
|
(Math.round(this.y * 100) / 100) + "," +
|
|
|
|
(Math.round(this.width * 100) / 100) + "x" +
|
|
|
|
(Math.round(this.height * 100) / 100) + "," +
|
|
|
|
(Math.round(this.degrees * 100) / 100) + "°" +
|
|
|
|
"]";
|
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 ));
|