Michael Nowak <mnowak_at_email.domain.hidden> get_plot_options, and its companion set_plot_options, are undocumented > and not necessarily in their final forms, but I've been using them for > a long while now, and for stuff like this they've been pretty stable > and set. FWIW, I use these two undocumented functions: private variable Plot_Info_Stack = {}; define push_plot () { list_append (Plot_Info_Stack, get_plot_options ()); } define pop_plot () { set_plot_options (list_pop (Plot_Info_Stack, -1)); } So when I want to create a new plot without worrying about messing up the plot state, I do: push_plot (); % save the current plot state % issue plotting commands pop_plot (); % restore the previous plot state --John ---- You received this message because you are subscribed to the isis-users list. To unsubscribe, send a message to isis-users-request_at_email.domain.hiddenwith the first line of the message as: unsubscribeReceived on Fri Mar 28 2008 - 18:29:05 EDT
This archive was generated by hypermail 2.2.0 : Sun Apr 06 2008 - 16:13:43 EDT