piskel/js/selection/BaseSelection.js
Vince 991b66b67c Basic cut implementation
SelectionManager implmentaiton
Rectangular seleciton impl
Utils refacoring
Event manager refactoring
basic cut implmentation
2012-09-12 12:01:47 +02:00

13 lines
245 B
JavaScript

(function () {
var ns = $.namespace("pskl.selection");
ns.BaseSelection = function () {
this.pixels = [];
};
ns.BaseSelection.prototype.getFrameSliceFromSelection = function (frame) {
if(this.pixels && this.pixels > 0) {
}
};
})();