Supressing Plot Output
- To: mathgroup at smc.vnet.net
- Subject: [mg16361] Supressing Plot Output
- From: Benjamin Rahn <brahn at fas.harvard.edu>
- Date: Thu, 11 Mar 1999 02:16:38 -0500
- Organization: Harvard University, Cambridge, Massachusetts
- Sender: owner-wri-mathgroup at wolfram.com
How can I overlay plots and graphics primitives _without_ displaying the
individual plots first?
For example, I have a function that creates a plot of a spiral based
on three points in the plane:
Spiral[A_,B_,C_]:=Module[ ...
...;
ParametricPlot[...] ];
The function Spiral[] immediately generates the spiral, so the
command
Show[Spiral[P,Q,R],Graphics[Line[{P,Q,R,P}]]];
gives two outputs: an image of the spiral by itself, and an image of the
spiral with the overlaid triangle. How can I restrict the output to the
second image?
Thanks!
-Ben