I am trying to draw a circle using 4 Quadratic Bézier curves. By referring https://www.degruyter.com/document/doi/10.1515/math-2016-0012/html.
$$C(t) = (1-t)^2P_0 + 2(1-t)tP_1 + t^2P_2.$$
If the arc is like this, the $t = 0.5$ and $C(t) = Radius$, so I can get the an equation:
$$Radius = (1-0.5)^2cos(\theta)Radius + 2(1-0.5)0.5P_1 + t^2cos(\theta)Radius$$
then I can get the control point, and use these to draw a $1/4$ arc and rotate it to make a circle.
$$P_1 = 2Radius - cos(\theta)Radius$$
but the circle I drew looks like, is there anything I did wrong? How to make the circle round?


