Consider the situation where we have two [cubic] Bézier curves with the following properties:
- They share one common point (end of curve 1 = start of curve 2)
- They have the same direction at the point where they meet (a smooth join)
- We suspect that they are likely to be the result of having split a single cubic Bézier curve to create the two curves we see (i.e. they can probably be combined into one curve)
Given this information:
- Is it possible to determine whether there is a single cubic Bézier that represents the same shape as the two original curves?
- If so, how can we calculate the control points of the new combined curve?
