BezierFunction
[{$pt_1$, $pt_2$, ...}]BezierFunction[{$pt_1$,$pt_2$,...}]
is given by the length of the lists $pt_i$.f = BezierFunction[{{0, 0}, {1, 1}, {2, 0}, {3, 2}}];
=
f[.5]
=
Plotting the Bézier Function accoss a Bézier curve:
Module[{p={{0, 0},{1, 1},{2, -1},{4, 0}}}, Graphics[{BezierCurve[p], Red, Point[Table[BezierFunction[p][x], {x, 0, 1, 0.1}]]}]]