Mercurial > hg > octave-lyh
diff scripts/plot/__go_draw_figure__.m @ 7269:3fade00a6ac7
[project @ 2007-12-07 19:26:20 by jwe]
author | jwe |
---|---|
date | Fri, 07 Dec 2007 19:26:21 +0000 |
parents | ffdbdf53665c |
children | c18512d0ddb6 |
line wrap: on
line diff
--- a/scripts/plot/__go_draw_figure__.m +++ b/scripts/plot/__go_draw_figure__.m @@ -20,9 +20,9 @@ ## Author: jwe -function __go_draw_figure__ (f, plot_stream, enhanced) +function __go_draw_figure__ (f, plot_stream, enhanced, mono) - if (nargin == 3) + if (nargin == 4) if (strcmp (f.type, "figure")) ## Set figure properties here? @@ -56,7 +56,7 @@ obj = get (kids(i)); switch (obj.type) case "axes" - __go_draw_axes__ (kids (i), plot_stream, enhanced); + __go_draw_axes__ (kids (i), plot_stream, enhanced, mono); otherwise error ("__go_draw_figure__: unknown object class, %s", obj.type);