Given the two sets of control points:
A: $(1, 2)$, $(2, 3)$, $(a, b)$, $(4, 2)$.
B: $(4, 2)$, $(c, d)$, $(5, 5)$, $(6, 4)$.
Find values for the control points $(a, b)$ and $(c, d)$ so that the resulting composite Bezier curve is smooth at the control point $(4, 2)$. How do I even go about starting this?
For the composite curve to be smooth at $(4\mid 2)\,$, the three control points $(a\mid b)\,$, $(4\mid 2)\,$, $(c\mid d)\,$ must be collinear --
i.e., $\begin{vmatrix} a&b&1\\ 4&2&1\\ c&d&1 \end{vmatrix}=0\,$.