SHA256
1
0
forked from pool/plotutils
plotutils/plotutils-2.5.dif

75 lines
1.9 KiB
Plaintext

--- manpage.1
+++ manpage.1 2006-05-22 14:15:56.000000000 +0200
@@ -0,0 +1,49 @@
+.\"
+.TH PLOTUTILS 1 "March 2, 2000" "Version 2.4.1" "GNU Plotting Utilities"
+.SH NAME
+plotutils \- The GNU plotting utilities.
+.PP
+double \- Final plotting utility.
+.br
+graph \- Converts table format to plot or graphic formats.
+.br
+ode \- Integrates ordinary differential equation(s).
+.br
+plot \- The plot filter.
+.br
+plotfont\- Displays mapping of available plot fonts.
+.br
+spline \- Spline interpolation of data.
+.br
+tek2plot \- Translates tektronix format to plot.
+.SH SYNOPSIS
+.B double
+[--help | options]
+.br
+.B graph
+[--help | options]
+.br
+.B ode
+[--help | options]
+.br
+.B plot
+[--help | options]
+.br
+.B plotfont
+[--help | options]
+.br
+.B spline
+[--help | options]
+.br
+.B tek2plot
+[--help | options]
+.SH DESCRIPTION
+.B plotutils
+does not have useful man pages. Documentation is available through
+the info system. The relevant command is "info plotutils".
+.SH SEE ALSO
+.BR ode (1),
+.BR plot (1),
+.BR plotfont (1),
+.BR spline (1),
+.BR tek2plot (1).
--- libplot/g_range.c
+++ libplot/g_range.c 2006-05-22 14:59:13.000000000 +0200
@@ -172,7 +172,7 @@ _set_line_end_bbox (plOutbuf *bufp, doub
void
_set_line_join_bbox (plOutbuf *bufp, double xleft, double yleft, double x, double y, double xright, double yright, double linewidth, int joinstyle, double miterlimit, double m[6])
{
- plVector v1, v2, vsum;
+ plVector v1 = {0.0, 0.0}, v2 = {0.0, 0.0}, vsum;
double v1len, v2len;
double halfwidth;
double mitrelen;
--- libplot/s_path.c
+++ libplot/s_path.c 2009-01-08 12:03:26.569330579 +0100
@@ -716,7 +716,7 @@ write_svg_path_style (plOutbuf *page, co
{
sprintf (page->point, "%.5g%s",
dashbuf[i],
- i < num_dashes - 1 ? " " : "\"");
+ i < num_dashes - 1 ? " " : "\" ");
_update_buffer (page);
}