[Math] Approximate arc length of cubic bezier curve

bezier-curvegeometry

I want to divide a cubic bezier curve, with 4 points, start, end and 2 control points, into segments that are not bigger then a certain distance. So, am looking for a computationally quick way to approximate the arc length of curve.

Best Answer

Use subdivision and stop recursion when the line segment joining the two endpoints is small enough. Not the same thing as arc length, but will probably be good enough.

If you want to approximate the arc length of a Bézier curve, see my answer in this question.

Related Question