[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: IDL Display under RH7
- Subject: Re: IDL Display under RH7
- From: Todd Clements <mole6e23(at)hotmail.com>
- Date: Fri, 26 Jan 2001 14:49:25 -0800
- Newsgroups: comp.lang.idl-pvwave
- Organization: UCSD
- References: <3A71F78C.86683014@astro.yale.edu>
- User-Agent: MT-NewsWatcher/3.0 (PPC)
- Xref: news.doit.wisc.edu comp.lang.idl-pvwave:23241
Hugh Crowl <hugh@astro.yale.edu> wrote:
> In attempting to display plots in IDL running under Red Hat 7.0 (KDE),
> the plot comes up in the standard IDL graphics window, but if any of the
> other windows overlap with it, the part of the IDL window that was
> overlaped is erased. When the IDL window is brought up to the front, it
> doesn't redraw the figure but insted it remains blank.
Retain is probably your problem:
;;
window,1, retain=2
plot, findgen(360), sin(findgen(360)*!pi/180)
window,2, retain=2
plot, findgen(360), cos(findgen(360)*!pi/180)
;;
Works for me!
Todd