Annotated Bezier Curve
Quadratic Bezier Curve
A quadratic Bezier curve is defined by three anchor points.
Under the hood
Input: anchor points \( {(x_1,y_1), (x_2,y_2), (x_3,y_3)} \)
\[
\begin{align}
1^{\overbrace{3 - 1}^{\amber{\text{degree - 1}}}}
\end{align}
\]
Output: parametric curve \( {(x(t),y(t))} \). Check out Bezier curves for a more comprehensive explanation of Bezier curves.
Related articles: