7 lines
		
	
	
		
			128 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			128 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
| import 'dart:html';
 | |
| 
 | |
| Rectangle createRectangle(left, top, width, height) {
 | |
|   return new Rectangle(left, top, width, height);
 | |
| }
 | |
| 
 |