From: Sam Moore Date: Wed, 18 Jun 2014 09:19:40 +0000 (+0800) Subject: The Béziers are quadratic not cubic... X-Git-Url: https://git.ucc.asn.au/?a=commitdiff_plain;h=17fe4372c6e26fbfa109036b64fa0729153b402a;p=ipdf%2Fcode.git The Béziers are quadratic not cubic... I can maths --- diff --git a/src/bezier.h b/src/bezier.h index 4e1c404..5a0015e 100644 --- a/src/bezier.h +++ b/src/bezier.h @@ -9,7 +9,7 @@ namespace IPDF extern int BinomialCoeff(int n, int k); extern Real Bernstein(int k, int n, const Real & u); - /** A _cubic_ bezier. I really want to make them an arbitrary size but that might upset David. **/ + /** A _quadratic_ bezier. **/ struct Bezier { Real x0; Real y0;