How to find xy coordinates of C?
* C has to be exactly in the middle of points A and B
* A and B could be anywhere on a 2D plane
* distance between A and B is fixed
Sounds like REALLY simple school maths... is there easier way than
C(x) = (B(x)-A(x))/2 + A(x)
C(y) = (B(y)-A(y))/2 + A(y)
?
Especially when B and A could switch places?