cjlano / svg

A Python SVG parser and drawing module
GNU General Public License v2.0
85 stars 33 forks source link

Bezier Curve Parameterization doesn't go to `t==1` #3

Closed wolfv closed 10 years ago

wolfv commented 10 years ago

For paramterizing the bezier curve, endpoint is not included because range(1, n) only goes to n - 1

https://github.com/cjlano/svg/blob/master/svg/geometry.py#L271