author | Francesco Abbate <francesco.bbt@gmail.com> | 2012年03月06日 21:21:11 +0100 |
---|---|---|
committer | Francesco Abbate <francesco.bbt@gmail.com> | 2012年03月06日 21:21:11 +0100 |
commit | bf04a5f78ca06b9440c2e125dbac3b938a7da950 (patch) | |
tree | 9e798ee47abfa08c4c417209ecd6ffe51b4268b2 | |
parent | fd34530d2b7058ebb80e195a33fc605ecc5935e1 (diff) | |
download | gsl-shell-bf04a5f78ca06b9440c2e125dbac3b938a7da950.tar.gz |
-rw-r--r-- | agg-plot/draw_svg.h | 2 |
diff --git a/agg-plot/draw_svg.h b/agg-plot/draw_svg.h index 20d5a77c..ba61f86e 100644 --- a/agg-plot/draw_svg.h +++ b/agg-plot/draw_svg.h @@ -88,7 +88,7 @@ void svg_curve_coords_from_vs(VertexSource* vs, str& s, double h) double x2, y2; vertex_flip(vs, &x2, &y2, h); vertex_flip(vs, &x, &y, h); - s.printf_add("%sC %g,%g %g,%g %g,%g", sep, x1, y1, x2, x2, x, y); + s.printf_add("%sC %g,%g %g,%g %g,%g", sep, x1, y1, x2, y2, x, y); omit_line_to = false; } else if (agg::is_curve3(cmd)) { double x1 = x, y1 = y; |