[qu2cu] Adjust comment

This commit is contained in:
Behdad Esfahbod 2023-02-20 16:22:06 -07:00
parent 7457a06c68
commit 26f590ddaa

View File

@ -274,7 +274,7 @@ def spline_to_curves(q, costs, tolerance=0.5, all_cubic=False):
costs: cumulative list of encoding cost of q in terms of number of costs: cumulative list of encoding cost of q in terms of number of
points that need to be encoded. Implied on-curve points do not points that need to be encoded. Implied on-curve points do not
contribute to the cost. If all points need to be encoded, then contribute to the cost. If all points need to be encoded, then
costs will be range(len(q)+1). costs will be range(1, len(q)+1).
""" """
assert len(q) >= 3, "quadratic spline requires at least 3 points" assert len(q) >= 3, "quadratic spline requires at least 3 points"