Drawing B-splines
Hardware typically can draw only line segments. Need to approximate B-spline with piecewise linear curve. Simplest approach: Choose small Dt. Compute points p(0), p(Dt), p(2Dt)... Draw line segments connecting the points.
Not very efficient -- have to evaluate a cubic polynomial (or several) at each point.
Can do better using a magic algorithm (subdivision).