graph drawing tool
distance_sq = function(x1,y1, x2,y2)
	return (x2-x1)^2+(y2-y1)^2
end