Mercurial > hg > octave-lyh
comparison scripts/plot/__go_draw_axes__.m @ 8909:52596fe9f178
__go_draw_axes__.m: Preserve column vector orientation for the axes children while removing the axis label & title handles.
author | Ben Abbott <bpabbott@mac.com> |
---|---|
date | Thu, 05 Mar 2009 00:55:56 -0500 |
parents | 4414e555505d |
children | 485eabc0cfec |
comparison
equal
deleted
inserted
replaced
8908:3c9acbb43f48 | 8909:52596fe9f178 |
---|---|
292 truecolor = false; | 292 truecolor = false; |
293 | 293 |
294 fputs (plot_stream, "set clip two;\n"); | 294 fputs (plot_stream, "set clip two;\n"); |
295 | 295 |
296 kids = axis_obj.children; | 296 kids = axis_obj.children; |
297 kids = setdiff (kids, [axis_obj.xlabel, axis_obj.ylabel, ... | 297 kids = setdiff (kids, [axis_obj.xlabel; axis_obj.ylabel; ... |
298 axis_obj.zlabel, axis_obj.title]); | 298 axis_obj.zlabel; axis_obj.title]); |
299 | 299 |
300 if (nd == 3) | 300 if (nd == 3) |
301 fputs (plot_stream, "set parametric;\n"); | 301 fputs (plot_stream, "set parametric;\n"); |
302 fputs (plot_stream, "set style data lines;\n"); | 302 fputs (plot_stream, "set style data lines;\n"); |
303 fputs (plot_stream, "set surface;\n"); | 303 fputs (plot_stream, "set surface;\n"); |