Bug introduced in 10.0.0 and fixed in 10.2
When I enter the following command, half of the fourth-degree spline is missing from the graph (i.e. it doesn't touch the last point). Is this a bug in Mathematica or am I fundamentally misunderstanding something about Bézier curves?
Manipulate[
Graphics[{BezierCurve[pts, SplineDegree -> 4], Dashed, Green,
Line[pts]}, PlotRange -> {{-.5, 1.5}, {-.5, 1.5}},
Frame -> True], {{pts, {{0, 0}, {.5, 0}, {.5, .5}, {1, .5}, {1,
1}}}, Locator, LocatorAutoCreate -> True}]
Here's a screenshot of the output:

What makes me suspicious is that the same behavior shows up in Mathematica's own help file on BezierCurve.
