# HG changeset patch # User Ben Abbott # Date 1236232556 18000 # Node ID 52596fe9f17806840d5a8d06448a187de78efb54 # Parent 3c9acbb43f4836a63ef50de0d7dbb224eebcdbf9 __go_draw_axes__.m: Preserve column vector orientation for the axes children while removing the axis label & title handles. diff -r 3c9acbb43f48 -r 52596fe9f178 scripts/ChangeLog --- a/scripts/ChangeLog Wed Mar 04 22:12:11 2009 +0100 +++ b/scripts/ChangeLog Thu Mar 05 00:55:56 2009 -0500 @@ -1,3 +1,8 @@ +2009-03-05 Ben Abbott + + * plot/__go_draw_axes__.m: Preserve column vector orientation for + the axes children while removing the axis label & title handles. + 2009-03-03 Jaroslav Hajek * polynomial/polyval.m: Implement using Horner scheme. diff -r 3c9acbb43f48 -r 52596fe9f178 scripts/plot/__go_draw_axes__.m --- a/scripts/plot/__go_draw_axes__.m Wed Mar 04 22:12:11 2009 +0100 +++ b/scripts/plot/__go_draw_axes__.m Thu Mar 05 00:55:56 2009 -0500 @@ -294,8 +294,8 @@ fputs (plot_stream, "set clip two;\n"); kids = axis_obj.children; - kids = setdiff (kids, [axis_obj.xlabel, axis_obj.ylabel, ... - axis_obj.zlabel, axis_obj.title]); + kids = setdiff (kids, [axis_obj.xlabel; axis_obj.ylabel; ... + axis_obj.zlabel; axis_obj.title]); if (nd == 3) fputs (plot_stream, "set parametric;\n");