octave-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Octave-bug-tracker] [bug #48387] Wrong line joins make noisy data much


From: Pantxo Diribarne
Subject: [Octave-bug-tracker] [bug #48387] Wrong line joins make noisy data much noisier
Date: Mon, 4 Jul 2016 08:26:55 +0000 (UTC)
User-agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:47.0) Gecko/20100101 Firefox/47.0

Follow-up Comment #15, bug #48387 (project octave):

I think having a control on linecap/join would be very useful, but setting it
directly in the postscript prolog looks like a hack:
* 1- it is not safe to assume that gl2ps won't change the value of linejoin we
have set
* 2- as per comment #12 and comment #14, it would be useful to change the
value of linejoin/cap on a per object type basis.
* 3- terminal svg and pdflatexstandalone will not be affected and will thus be
different from other formats (which are all based on postscript)

We thus need something like the pseudo-code below:

gl2ps_print::draw_line (go)
{
  gl2psSpecial (gl2ps_term, "/oldlinejoin currentlinejoin def\n1
setlinejoin");
  gl_render::draw_line (go)
  gl2psSpecial (gl2ps_term, "oldlinejoin setlinejoin");
}


We should also be able to do the same for pdf (psdlatexstandalone uses pdf
terminal) and svg terminals.

In the end, this looks like a feature request for gl2ps, no? 


    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?48387>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/




reply via email to

[Prev in Thread] Current Thread [Next in Thread]