util={ inside = function(x, y, rectangle) if x >= rectangle[1] and y >= rectangle[2] and x < rectangle[3]+rectangle[1] and y < rectangle[4]+rectangle[2] then return true else return false end end }