|
From: <ai...@us...> - 2011-05-01 19:33:00
|
Revision: 11740
http://plplot.svn.sourceforge.net/plplot/?rev=11740&view=rev
Author: airwin
Date: 2011-05-01 19:32:54 +0000 (Sun, 01 May 2011)
Log Message:
-----------
Use different cmap1 color scheme that does not have max or min colour
equal to the background. This gets rid of the "empty" cap case (where
cap colour is the same as the background colour) that looks like an
error.
Modified Paths:
--------------
trunk/examples/c/x33c.c
Modified: trunk/examples/c/x33c.c
===================================================================
--- trunk/examples/c/x33c.c 2011-05-01 19:27:20 UTC (rev 11739)
+++ trunk/examples/c/x33c.c 2011-05-01 19:32:54 UTC (rev 11740)
@@ -848,16 +848,16 @@
// We can only test image and gradient colorbars with two element arrays
for ( i = 2; i < COLORBAR_KINDS; i ++ )
{
- plcolorbar_example( "cmap1_blue_yellow.pal", i, 0, 0, 2, values_small );
+ plcolorbar_example( "cmap1_blue_red.pal", i, 0, 0, 2, values_small );
}
// Test shade colorbars with larger arrays
for ( i = 0; i < 2; i++ )
{
- plcolorbar_example( "cmap1_blue_yellow.pal", i, 4, 2, 9, values_even );
+ plcolorbar_example( "cmap1_blue_red.pal", i, 4, 2, 9, values_even );
}
for ( i = 0; i < 2; i++ )
{
- plcolorbar_example( "cmap1_blue_yellow.pal", i, 0, 0, 9, values_uneven );
+ plcolorbar_example( "cmap1_blue_red.pal", i, 0, 0, 9, values_uneven );
}
}
plend();
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|