Path: csiph.com!weretis.net!feeder4.news.weretis.net!newsfeed.CARNet.hr!news.grnet.gr!.POSTED!not-for-mail From: "pez" Newsgroups: comp.graphics.apps.gnuplot Subject: Re: An exact diagonal Date: Sun, 3 Apr 2016 17:31:20 +0200 Organization: GRNET - Greek Research and Technology Network Lines: 37 Message-ID: References: NNTP-Posting-Host: pptp-129-036.vpn.duth.gr X-Trace: news.grnet.gr 1459697516 9604 83.212.129.36 (3 Apr 2016 15:31:56 GMT) X-Complaints-To: newsadm@grnet.gr NNTP-Posting-Date: Sun, 3 Apr 2016 15:31:56 +0000 (UTC) X-Newsreader: Microsoft Outlook Express 6.00.2900.5931 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.6157 Xref: csiph.com comp.graphics.apps.gnuplot:3285 | "Karl Ratzsch" wrote in message news:nddnh6$spl$1@solani.org... | Am 24.03.2016 um 12:34 schrieb pez: | > set term wxt size 300,300 title "wxt 300x300" | ... | > - | > but, in this way, we get an 1-pixel-down wxt subdiagonal, | > instead of an exact win diagonal. | | Yes, known bug. | https://sourceforge.net/p/gnuplot/bugs/1759/ | But at least there is no jitter in the line. | | Point is, i don't understand what exactly you want to achieve. | | Who cares, on the interactive desktop terminal, if the output is exactly | 300x300 pixel wide? If you want a bitmap file for further use in another | program, OK. But with the png terminal it works perfectly. | | set term png size 300,300 | set margins 0,0,0,0 | unset border | unset tics | set samples 151 | set out "test.png" | plot [0:300] x lc '#ff0000' with dots notitle | set out = - 1 A bug known after 19.3.2016 - 2 An one pixel down staircase of pixels - 3 A graph of identity function - 4 You - 5 We don't want - 6 Yes - 7 set samples 301 - 8 Conclusion : Since there is at least one terminal in which it works, this is not a problem of gnuplot but of its wxt and win term implemantations - Thank you