# Approximated arc length Sometimes, we don't actually need the precision of a true arc length, and we can get away with simply computing the approximate arc length instead. The by far fastest way to do this is to flatten the curve and then simply calculate the linear distance from point to point. This will come with an error, but this can be made arbitrarily small by increasing the segment count. If we combine the work done in the previous sections on curve flattening and arc length computation, we can implement these with minimal effort: