search for: ps_vector

Displaying 1 result from an estimated 1 matches for "ps_vector".

Did you mean: pf_vector
2003 May 29
4
Postscript query: plotting long vectors
...came out fine; in gnuplot.ps every 400 lines during the plot it outputs "currentpoint stroke M" (M is defined to moveto). I had a look at the gnuplot source (gnuplot-3.7.3/term/post.trm) and found that it does keep count of the length of the current postscript path: e.g. in the function PS_vector(x,y) we see (line 1122): if (ps_path_count >= 400) { fprintf(gpoutfile,"currentpoint stroke M\n"); ps_path_count = 0; } so every 400 points it draws the line so far and then continues. (Matlab .ps files also seem to have regular "MP stroke". I had a quick look in the...