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

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

[Octave-bug-tracker] [bug #49260] gnuplot visual differences to OpenGL t


From: Rik
Subject: [Octave-bug-tracker] [bug #49260] gnuplot visual differences to OpenGL toolkit
Date: Thu, 6 Oct 2016 21:31:18 +0000 (UTC)
User-agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:43.0) Gecko/20100101 Firefox/43.0

Follow-up Comment #8, bug #49260 (project octave):

I expanded the code to better see how scatter is getting a different color in
gnuplot than in fltk.


close all
x = rand (1,1);
y = rand (1,1);
colors = rand (1,1);

graphics_toolkit gnuplot
scatter (x,y, [], colors, "filled")
colormap (rainbow (3));

title ("gnuplot");
graphics_toolkit fltk
figure
scatter (x,y, [], colors, "filled")
colormap (rainbow (3));
title ("fltk");


With only three colors in the colormap, gnuplot always chooses the last one
while fltk always chooses the middle one.



    _______________________________________________________

Reply to this item at:

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

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




reply via email to

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