# HG changeset patch # User kai@linux-pc # Date 1205496050 14400 # Node ID bf704d1c5e4375253408bbb855f99138cee2bb5c # Parent 67403cfad8d7bfd7db1e65a66b1f53ba6cd21990 Bug fix, set splot user style to default diff -r 67403cfad8d7 -r bf704d1c5e43 scripts/ChangeLog --- a/scripts/ChangeLog Thu Mar 13 13:35:27 2008 -0400 +++ b/scripts/ChangeLog Fri Mar 14 08:00:50 2008 -0400 @@ -1,3 +1,8 @@ +2008-03-14 Kai Habel + + * plot/__go_draw_axes__.m: Expicitly set gnuplot user + style to default to avoid wrong mesh color in some cases. + 2008-03-12 David Bateman * geometry/griddata3.m: Use griddatan and not griddata @@ -8,16 +13,14 @@ * plot/__go_draw_axes__.m: Use get to access hidden properties. Use strcmpi when comparing string properties. + * io/csread.m, io/csvwrite.m, io/dlmwrite.m: Style fixes. + 2008-03-11 Kai Habel * plot/__go_draw_axes__.m: Plot surfaces in front of axes. Allow plotting of uniform colored mesh plots with and w/o hidden line removal. -2008-03-11 John W. Eaton - - * io/csread.m, io/csvwrite.m, io/dlmwrite.m: Style fixes. - 2008-03-11 David Bateman * io/dlmwrite.m, io/csvread.m, io/csvwrite.m: Files ported from diff -r 67403cfad8d7 -r bf704d1c5e43 scripts/plot/__go_draw_axes__.m --- a/scripts/plot/__go_draw_axes__.m Thu Mar 13 13:35:27 2008 -0400 +++ b/scripts/plot/__go_draw_axes__.m Fri Mar 14 08:00:50 2008 -0400 @@ -881,12 +881,12 @@ || (isnumeric (obj.facecolor) && all (obj.facecolor == 1))); hidden_removal = false; - + fputs (plot_stream, "set style increment default;\n"); if (flat_interp_edge && facecolor_none_or_white) withclause{data_idx} = "with line palette"; fputs (plot_stream, "unset pm3d\n"); if (all (obj.facecolor == 1)) - hidden_removal = true; + hidden_removal = true; endif elseif (facecolor_none_or_white) edgecol = obj.edgecolor;