Re: [Plplot-devel] [RESEND] [PATCH] exponent label placement when using plslabelfunc

2013-04-29 Thread Mark de Wever
Hi Alan, Seems I didn't notice your reply until today. Alan W. Irwin wrote: > On 2013-03-25 09:33+0100 Mark de Wever wrote: > > This is the right place to post concerning PLplot development issues > such as the one you have found. Ok thanks for the confirmation. > Therefore, I have tentatively

[Plplot-devel] A minor issue about filling polygon in cairo driver

2013-04-29 Thread Hailiang Wang
Hi, I have found an issue about filling polygon in cairo driver. Line 1427 of cairo.c: cairo_set_line_width( aStream->cairoContext, 1.0 ); It is a hard coded line width value. When the polygon size is large enough, the problem is not obvious, but when the polygon size is small (comparable

Re: [Plplot-devel] Should line width thinner than 1.0 be supported?

2013-04-29 Thread Alan W. Irwin
On 2013-04-28 06:30-0400 Hezekiah M. Carty wrote: > On Fri, Mar 15, 2013 at 11:32 AM, Hezekiah M. Carty > wrote: >> On Tue, Jan 29, 2013 at 5:23 AM, Andrew Ross >> wrote: >>> On Mon, Jan 28, 2013 at 06:31:42PM -0800, Alan Irwin wrote: Of course, we would still be stuck with integer lin

Re: [Plplot-devel] A minor issue about filling polygon in cairo driver

2013-04-29 Thread Alan W. Irwin
On 2013-04-29 22:30+0800 Hailiang Wang wrote: > Hi, > > I have found an issue about filling polygon in cairo driver. > Line 1427 of cairo.c: >cairo_set_line_width( aStream->cairoContext, 1.0 ); > It is a hard coded line width value. When the polygon size > is large enough, the problem is n

Re: [Plplot-devel] A minor issue about filling polygon in cairo driver

2013-04-29 Thread Hailiang Wang
Hi Alan, The line width has been already set to the most recent value before line 1427, so it appears that there is no need to set it again. In the function filled_polygon: 1413:poly_line( pls, xa, ya, npts ); In function poly_line: 1389:set_current_context( pls ); In function set_curre

Re: [Plplot-devel] A minor issue about filling polygon in cairo driver

2013-04-29 Thread Alan W. Irwin
On 2013-04-30 12:05+0800 Hailiang Wang wrote: > Hi Alan, > > The line width has been already set to the most recent value before line > 1427, so it appears that there is no need to set it again. > > In the function filled_polygon: > 1413:poly_line( pls, xa, ya, npts ); > > In function poly_lin