 
 
 
 
 
 
Re: invisible graphics
- To: mathgroup at smc.vnet.net
- Subject: [mg34028] Re: invisible graphics
- From: Paul Abbott <paul at physics.uwa.edu.au>
- Date: Sat, 27 Apr 2002 00:56:33 -0400 (EDT)
- Organization: The University of Western Australia
- References: <aa89ge$h17$1@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
In article <aa89ge$h17$1 at smc.vnet.net>, David.Annetts at csiro.au wrote:
> > Does anyone know an option I can give to ParametricPlot that will
> > cause it to not draw a graph?
> 
> Apart from $DisplayFunction->Identity, no.
Actually, there is a slight modification of this approach that is often 
useful. Use Block to _locally_ change the value of $DisplayFunction:
   Show[Block[{$DisplayFunction = Identity},
     GraphicsArray[Table[Plot[Sin[x + t], {x, 0, 2Pi}],{t, 0, 2}]]]];
Cheers,
   Paul
____________________________________________________________________ 
Paul Abbott                                   Phone: +61-8-9380-2734
Department of Physics                           Fax: +61-8-9380-1014
The University of Western Australia      (CRICOS Provider No 00126G)         
35 Stirling Highway
Crawley WA 6009                      mailto:paul at physics.uwa.edu.au 
AUSTRALIA                            http://physics.uwa.edu.au/~paul
____________________________________________________________________

