diff options
author | Kurt Jung <kurt.w.jung@code.google.com> | 2014-10-28 07:17:20 -0400 |
---|---|---|
committer | Kurt Jung <kurt.w.jung@code.google.com> | 2014-10-28 07:17:20 -0400 |
commit | 8c9dcbdb662b4c46b4a89f187123fdca76ee7248 (patch) | |
tree | e2afcd11657081d440a9c32a8ceaa0828a0823c4 | |
parent | 030943ab81a363349e2218650ed1ef1d39c2d7e3 (diff) |
Correct tutorial reference
-rw-r--r-- | fpdf.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -943,7 +943,7 @@ func (f *Fpdf) CurveCubic(x0, y0, cx0, cy0, x1, y1, cx1, cy1 float64, styleStr s // This routine performs the same function as CurveCubic() but uses standard // argument order. // -// See tutorials 11 and 20 for examples of this function. +// See tutorials 11 for examples of this function. func (f *Fpdf) CurveBezierCubic(x0, y0, cx0, cy0, cx1, cy1, x1, y1 float64, styleStr string) { f.point(x0, y0) f.outf("%.5f %.5f %.5f %.5f %.5f %.5f c %s", cx0*f.k, (f.h-cy0)*f.k, |