2012-09-12 10:01:47 +00:00
|
|
|
(function () {
|
2013-08-10 10:11:16 +00:00
|
|
|
var ns = $.namespace("pskl.selection");
|
2012-09-12 10:01:47 +00:00
|
|
|
|
2013-08-10 10:11:16 +00:00
|
|
|
ns.RectangularSelection = function (x0, y0, x1, y1) {
|
|
|
|
this.pixels = pskl.PixelUtils.getRectanglePixels(x0, y0, x1, y1);
|
|
|
|
};
|
2012-09-12 10:01:47 +00:00
|
|
|
|
2013-08-10 10:11:16 +00:00
|
|
|
pskl.utils.inherit(ns.RectangularSelection, ns.BaseSelection);
|
2012-09-12 10:01:47 +00:00
|
|
|
})();
|