summaryrefslogtreecommitdiff
path: root/fpdf.go
diff options
context:
space:
mode:
authorKurt Jung <kurt.w.jung@code.google.com>2014-01-28 15:35:50 -0500
committerKurt Jung <kurt.w.jung@code.google.com>2014-01-28 15:35:50 -0500
commit5dd5cb88814c86919e18527229269e5d1bb82dbc (patch)
tree082ff43cf862806e02fb501279851a94341747fc /fpdf.go
parentbdfc192ed30699289db33ed8f8a9b5b268cb654b (diff)
Support for unstyled, path-only SVG images of the type generated by the jSignature web control.
Diffstat (limited to 'fpdf.go')
-rw-r--r--fpdf.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/fpdf.go b/fpdf.go
index 30cf006..c2625d0 100644
--- a/fpdf.go
+++ b/fpdf.go
@@ -826,7 +826,7 @@ func (f *Fpdf) Curve(x0, y0, cx, cy, x1, y1 float64, styleStr string) {
// the current draw color, line width, and cap style centered on the curve's
// path. Filling uses the current fill color.
//
-// See tutorial 11 for an example of this function.
+// See tutorials 11 and 20 for examples of this function.
func (f *Fpdf) CurveCubic(x0, y0, cx0, cy0, x1, y1, cx1, cy1 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,