From 4c42f4e1ba0cc96ef5e9b5143acff3f3a784fbdb Mon Sep 17 00:00:00 2001 From: Tom Payne Date: Mon, 22 Apr 2013 10:14:22 +0200 Subject: [PATCH] Remove ol.PixelBounds --- src/ol/pixelbounds.js | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 src/ol/pixelbounds.js diff --git a/src/ol/pixelbounds.js b/src/ol/pixelbounds.js deleted file mode 100644 index 54f941edef..0000000000 --- a/src/ol/pixelbounds.js +++ /dev/null @@ -1,34 +0,0 @@ -goog.provide('ol.PixelBounds'); - - - -/** - * @constructor - * @param {number} minX Minimum X. - * @param {number} maxX Maximum X. - * @param {number} minY Minimum Y. - * @param {number} maxY Maximum Y. - */ -ol.PixelBounds = function(minX, maxX, minY, maxY) { - - /** - * @type {number} - */ - this.minX = minX; - - /** - * @type {number} - */ - this.maxX = maxX; - - /** - * @type {number} - */ - this.minY = minY; - - /** - * @type {number} - */ - this.maxY = maxY; - -};