# HG changeset patch # User John W. Eaton # Date 1204828082 18000 # Node ID 1e6443ff960f980a6289d9cdec4080d917e51189 # Parent 90536e155fdef985477ecc4047627783074b4820 handle axes linewidth property diff --git a/scripts/ChangeLog b/scripts/ChangeLog --- a/scripts/ChangeLog +++ b/scripts/ChangeLog @@ -1,5 +1,7 @@ 2008-03-06 John W. Eaton + * plot/ChangeLog: Handle axes linewidth property. + * plot/__go_draw_axes__.m: Adjust markersize by a factor of 1/6. * general/interpn.m: New test. diff --git a/scripts/plot/__go_draw_axes__.m b/scripts/plot/__go_draw_axes__.m --- a/scripts/plot/__go_draw_axes__.m +++ b/scripts/plot/__go_draw_axes__.m @@ -1084,6 +1084,8 @@ if (strcmpi (axis_obj.visible, "off")) fputs (plot_stream, "unset border; unset tics\n"); + else + fprintf (plot_stream, "set border lw %f;\n", axis_obj.linewidth); endif if (strcmpi (axis_obj.key, "on"))