I have a set of points on a plane, and I want to join these points using a circular arc between consecutive points such that the final curve I get is smooth (no sharp edges).
Is this possible? If so, how can I find that arc?
I have a set of points on a plane, and I want to join these points using a circular arc between consecutive points such that the final curve I get is smooth (no sharp edges).
Is this possible? If so, how can I find that arc?
Copyright © 2021 JogjaFile Inc.
First I will rewrite the problem in a more precise terms.
Draw any arc between $A_1$ and $A_2$ (the center $C_1$ must be on the perpendicular bisector of $\overline{A_1A_2}$). Now, draw the line $C_1A_2$. This line shall intersect the perpendicular bisector of $A_2A_3$ at $C_2$. This is the center of the second arc. If $C_1A_2$ and the perpendicular bisector of $A_2A_3$ are parallel, $C_2$ will be the middle point of $A_2A_3$.
Can you continue?