Circle area function
Deleted UserNext function will return true if position x|y is in square area
started from x1|y1 and finished from x2|y2
1
2
3
2
3
function area(x, y, x1, y1, x2, y2) 	return x >= x1 and y >= y1 and x <= x2 and y <= y2 end
My problem is:
How to make circle area except of square?