I have two fixed points, $P_1$ and $P_2$. I am trying to distribute $n$ points between them, so that the distance between every point is equal. This is easy when:
distance between points $\cdot (n-1) =$ distance between $P_1$ and $P_2$,
as they all follow the slope of the two fixed points, but I want to be able to increase the distance between them so that:
distance between points $\cdot (n-1) >$ distance between $P_1$ and $P_2$.
I have played around a lot with pythagorean methods, but I always seem to be one variable short.
Thanks for any help.