|
From: Hans-Bernhard B. <HBB...@t-...> - 2013-10-13 13:07:51
|
On 13.10.2013 11:32, Dr. Johannes Zellner wrote: > set term X11 > set parametric > plot sin(t), cos(t) w filledcurves > > gives the following plot: [...] > is this a bug or did I make something wrong? Possibly both. You really should have specified a trange to get a proper circle with one turn. Yours is about 1.6 turns, making it hard to know which area is supposed to be filled. I.e. plot [0:2*pi] sin(t), cos(t) w filledcurves might have worked better (it does here with 4.6.4 on Windows). And you should have mentioned which version of gnuplot you observed this with. |