% % Make a Plot Window % /plotwin framebuffer /new FancyPlotWindow send def { /FrameLabel (XYPLOTS) def /IconLabel (XYPLOTS) def 0 600 400 300 /reshape plotwin send } plotwin send /map plotwin send % Send Red Data 1 0 0 rgbcolor /PlotColor plotwin send [0 0 10 10 20 20] /SendData plotwin send % Send Green Data 0 1 0 rgbcolor /PlotColor plotwin send [0 0 10 20 20 30] /SendData plotwin send % Send Blue Data 0 0 1 rgbcolor /PlotColor plotwin send [0 0 10 30 20 40] /SendData plotwin send