Example
Build a cubic Bezier point through three interpolation levels.
highlighted = computed this step
Step 1 — Set up
Set up the exact input values.
control points and t(((0, 0), (1, 3), (4, 3), (6, 0)), 1/3)
Step 2 — First level
Compute the highlighted value.
level one((1/3, 1), (2, 3), (14/3, 2))
Step 3 — Second level
Compute the highlighted value.
level two((8/9, 5/3), (26/9, 8/3))
Step 4 — Cubic point
Compute the highlighted value.
curve point(14/9, 2)
de-casteljau-cubic
A cubic Bezier point is found by interpolating four controls down to three points, then two points, then one point.