Re: Interactive Display
- To: mathgroup at smc.vnet.net
- Subject: [mg27267] Re: Interactive Display
- From: Jens-Peer Kuska <kuska at informatik.uni-leipzig.de>
- Date: Sat, 17 Feb 2001 03:30:40 -0500 (EST)
- Organization: Universitaet Leipzig
- References: <96irhn$dd9@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
Hi,
this is not possible because the full graphics must be send to
Mathematica's Postscript interpreter and send back to the frontend.
You can't render a part of the graphics and increment the data.
Regards
Jens
oda wrote:
>
> Hi, all
>
> How can I interactively update a graphics a graphics ?
> For example I have:
> Random vertices
> In[23}:= vertices = Table[{Random[], Random[]}, {1000}];
> I want to automatically display the update the under Plot In[24] when I
> execute the line.
> Notice that I don't like to put vertices definition straightly in
> listplot.
>
> In[24]:=ListPlot[vertices, PlotJoined -> True].
>
> Thanks in advance