I am constructing Naca type profiles with Bezier curves.
controlPoints={{1, 0.}, {0.863924,0.00448168}, {0.78316,-0.019}, {0.444, -0.019}, {0.269064,-0.019}, {0,-0.014478}, {0, 0}, {0, 0.017794}, {0.236028, 0.041}, {0.442,0.041}, {0.616096,0.041}, {0.70006,0.0378152}, {1,0.}}; bezProfile = BezierFunction[controlPoints]; Show[Graphics[{Orange, BezierCurve[controlPoints], Red, Point[controlPoints], Green, Line[controlPoints]}, Axes -> True], ParametricPlot[bezProfile[t], {t, 0, 1}]] The BezierFunction gives a very different results over the BezierCurve which is wrong !!
Any explanation ??



BezierCurve[controlPoints, SplineDegree -> (Length@controlPoints - 1)]? $\endgroup$