Bézier Splines#

Named after Pierre Bézier, Bézier curves are defined by means of Bernstein polynomials [Far12], which are named after Sergei Bernstein. A popular method to evaluate Bézier curves at given parameter values is De Casteljau’s algorithm. A very good online resource with many interactive examples is the website https://pomax.github.io/bezierinfo/.

Bézier splines are composed of Bézier curve segments.

A Python implementation is available in the class splines.Bernstein.