﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
3004	Anonymous Maps	jaberwacky	Jon	"So I have an idea which I think will make coding a little easier in that a descriptive variable name need not be thought of in every case.  I spend a bit of time in the outer regions thinking of hair brained ideas which are often shot down (rightfully so).  However, I think I have a good idea, so I present to you and respectfully request the following:

{{{
Func _rect_from_points(Const $a1, Const $a2, Const $b1, Const $b2)      
	With []         
		.Left = ($a1 < $b1) ? $a1 : $b1         
		.Top = ($a2 < $b2) ? $a2 : $b2         
		.Width = ($b1 > $a1) ? ($b1 - .Left) : ($a1 - .Left)         
		.Height = ($b2 > $a2) ? ($b2 - .Top) : ($a2 - .Top)                 
	
		Return . ; or 
		; Return [] or 
		; Return .[] ??     
	EndWith
EndFunc
}}}"	Feature Request	assigned		AutoIt		None			
