I have some software which finds points along an arc.
The arc starts at (X1, Y1) and ends at (X2, Y2) and has radius R
The software evaluates the following expression and if it is true says that the arc is impossible.
How does this work, please?
4 * R ^ 2 < ((X2 - X1) ^ 2 + (Y2 - Y1) ^ 2)
The arc starts at (X1, Y1) and ends at (X2, Y2) and has radius R
The software evaluates the following expression and if it is true says that the arc is impossible.
How does this work, please?
4 * R ^ 2 < ((X2 - X1) ^ 2 + (Y2 - Y1) ^ 2)

