Path: csiph.com!weretis.net!feeder4.news.weretis.net!feeder5.news.weretis.net!news.solani.org!.POSTED!not-for-mail From: Karl Ratzsch Newsgroups: comp.graphics.apps.gnuplot Subject: Re: Point size default Date: Mon, 3 Apr 2017 13:20:49 +0200 Organization: solani.org Lines: 36 Message-ID: References: <51e94c93-b07f-421a-aaa7-35378e81e01f@googlegroups.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Trace: solani.org 1491218449 26548 eJwFwYEBwDAEBMCVgkc6juD3H6F3biHRifCA02mbT+5XPcShaQ8gapwiveraYl9OjPcpTf4x5hIa (3 Apr 2017 11:20:49 GMT) X-Complaints-To: abuse@news.solani.org NNTP-Posting-Date: Mon, 3 Apr 2017 11:20:49 +0000 (UTC) User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.8.0 X-User-ID: eJwFwQkBwDAIA0BL4wmZndCCfwm9Q5TVYRYqsdjZaepmK2xW8vGL2IwzEugs1fB39XdpiAdKXhIQ Cancel-Lock: sha1:6Qo2GDR661u5sAL8Qja7tEOHoYg= In-Reply-To: <51e94c93-b07f-421a-aaa7-35378e81e01f@googlegroups.com> X-NNTP-Posting-Host: eJwNwoERACEIA7CVQGyVcb5w7D+CnwuCzjqb4MZgJNGvGzgt9/k6p7tkYUIwPBczj26u/NcDJnEQ2w== Xref: csiph.com comp.graphics.apps.gnuplot:3610 Am 03.04.2017 um 10:27 schrieb jacques.Lebourlot@obspm.fr: > > (This was posted on "Gnuplot in Action" forum some time ago, but did > not get any answer. I need it again...) > > Point sizes are scaled from a "default" size, but I can't find the > (terminal dependent) absolute value of this default. > > I wish to set a single point (pt 6) in a 3D splot to get a fixed > circle of (physical) size 1, in the plane of the screen, when I > change view with the mouse. This is to illustrate 3D coordinate > systems (see the simplified example below). > > I managed to adjust the size by trial and error (45.5*sc below)), but > it would be much more convenient to compute the scaling factor from > known values. Hence, I need the default point size... > Point sizes are defined per terminal, and not guaranteed to have a certain absolute size. You can either plot with style "circles", or put the circle at the desired position directly via "set object circle". $zero << EOD 0 EOD plot $zero us 1:1:(6) with circles or set object 1 circle at 0,0 size 6 hth. Karl