Create a Box using left, top, width and height

Property definitions

geometry $ Box :: ltwh
	# Create a `Box` using left, top, width and height
	init ltwh(left, top, width, height: N)
	do
		init(left, left+width, top, top - height)
	end
lib/geometry/boxes.nit:146,2--150,4