From: <ai...@us...> - 2014-01-29 00:29:32
|
Revision: 12967 http://sourceforge.net/p/plplot/code/12967 Author: airwin Date: 2014-01-29 00:29:24 +0000 (Wed, 29 Jan 2014) Log Message: ----------- Change parameter names left, right, bottom, top ==> xmin, xmax, ymin, ymax for plshade and plshade1 to be consistent with the argument names for those functions in src/plshade.c and also to be consistent with the names for the equivalent arguments of plshades (both in include/plplot.h and src/plshade.c). Modified Paths: -------------- trunk/include/plplot.h Modified: trunk/include/plplot.h =================================================================== --- trunk/include/plplot.h 2014-01-29 00:01:50 UTC (rev 12966) +++ trunk/include/plplot.h 2014-01-29 00:29:24 UTC (rev 12967) @@ -1630,7 +1630,7 @@ PLDLLIMPEXP void c_plshade( const PLFLT * const *a, PLINT nx, PLINT ny, PLINT ( *defined )( PLFLT, PLFLT ), - PLFLT left, PLFLT right, PLFLT bottom, PLFLT top, + PLFLT xmin, PLFLT xmax, PLFLT ymin, PLFLT ymax, PLFLT shade_min, PLFLT shade_max, PLINT sh_cmap, PLFLT sh_color, PLFLT sh_width, PLINT min_color, PLFLT min_width, @@ -1641,7 +1641,7 @@ PLDLLIMPEXP void c_plshade1( const PLFLT *a, PLINT nx, PLINT ny, PLINT ( *defined )( PLFLT, PLFLT ), - PLFLT left, PLFLT right, PLFLT bottom, PLFLT top, + PLFLT xmin, PLFLT xmax, PLFLT ymin, PLFLT ymax, PLFLT shade_min, PLFLT shade_max, PLINT sh_cmap, PLFLT sh_color, PLFLT sh_width, PLINT min_color, PLFLT min_width, This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |