991b66b67c
SelectionManager implmentaiton Rectangular seleciton impl Utils refacoring Event manager refactoring basic cut implmentation
13 lines
No EOL
245 B
JavaScript
13 lines
No EOL
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) {
|
|
|
|
}
|
|
};
|
|
})(); |