;+ ; Removes all annotations from the current plot. ; ; @keyword noshow {in}{optional}{type=boolean} If set, don't call show ; here. ; ; @version $Id: clearannotations.pro,v 1.1 2005/02/08 19:52:36 bgarwood Exp $ ;- pro clearannotations, noshow=noshow common gbtplot_common,mystate,xarray mystate.n_annotations = 0 if (not keyword_set(noshow)) then show,/reshow return end