Create a Box using left, bottom, width and height

Property definitions

geometry $ Box :: lbwh
	# Create a `Box` using left, bottom, width and height
	init lbwh(left, bottom, width, height: N)
	do
		init(left, left + width, bottom + height, bottom)
	end
lib/geometry/boxes.nit:140,2--144,4