Re:Interactive Display
- To: mathgroup at smc.vnet.net
 - Subject: [mg27281] Re:Interactive Display
 - From: bghiggins at ucdavis.edu (Brian Higgins)
 - Date: Sun, 18 Feb 2001 02:52:14 -0500 (EST)
 - Organization: The Math Forum
 - References: <96irhn$dd9@smc.vnet.net>
 - Sender: owner-wri-mathgroup at wolfram.com
 
I am not sure what you really want to do, but here is one way to
generate a new set of vertices everytime the plot command is executed:
myvertices := Map[Point[#] &, Table[{Random[], Random[]}, {1000}]]
Plot[0, {x, 0, 1}, Epilog -> myvertices]
Cheers
Brian