mirror of
				https://github.com/piskelapp/piskel.git
				synced 2023-08-10 21:12:52 +03:00 
			
		
		
		
	 991b66b67c
			
		
	
	991b66b67c
	
	
	
		
			
			SelectionManager implmentaiton Rectangular seleciton impl Utils refacoring Event manager refactoring basic cut implmentation
		
			
				
	
	
		
			9 lines
		
	
	
		
			254 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			254 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| (function () {
 | |
| 	var ns = $.namespace("pskl.selection");
 | |
| 
 | |
| 	ns.RectangularSelection = function (x0, y0, x1, y1) {
 | |
| 		this.pixels = pskl.PixelUtils.getRectanglePixels(x0, y0, x1, y1);
 | |
| 	};
 | |
| 
 | |
| 	pskl.utils.inherit(ns.RectangularSelection, ns.BaseSelection);
 | |
| })(); |