arrange a predefined number of objects along the x axis. there needs to be a predefined minimum gap between each of them. and the center of the set being the zero point, the objects being arrange around that
def arrange(number, min_gap): return (number - 1) * min_gap / 2 arrange(3, 10)