Remove ol.Bounds

This commit is contained in:
Tom Payne
2012-07-15 18:58:47 +02:00
parent ae7572aa7a
commit ca7d010974
2 changed files with 0 additions and 21 deletions

View File

@@ -1,20 +0,0 @@
goog.provide('ol.Bounds');
goog.require('goog.math.Box');
/**
* @constructor
* @extends {goog.math.Box}
* @param {number} top Top.
* @param {number} right Right.
* @param {number} bottom Bottom.
* @param {number} left Left.
*/
ol.Bounds = function(top, right, bottom, left) {
goog.base(this, top, right, bottom, left);
};
goog.inherits(ol.Bounds, goog.math.Box);