Uniform discretization of Bezier curve
问题 I need to discretise a 3rd order Bezier curve with points equally distributed along the curve. The curve is defined by four points p0, p1, p2, p3 and a generic point p(t) with 0 < t < 1 is given by: point_t = (1 - t) * (1 - t) * (1 - t) * p0 + 3 * (1 - t) * (1 - t) * t * p1 + 3 * (1 - t) * t * t * p2 + t * t * t * p3; My first idea was to discretise t = 0, t_1, ... t_n, ..., 1 This doesn't work as, in general, we don't end up with a uniform distance between the discretised points. To sum up,