scatterplot3d_movie
- To: mathgroup at smc.vnet.net
- Subject: [mg33017] scatterplot3d_movie
- From: "Umby" <umprisco at unina.it>
- Date: Tue, 26 Feb 2002 04:34:59 -0500 (EST)
- Organization: C.D.S. Centro di Servizi Didattico Scientifico
- Sender: owner-wri-mathgroup at wolfram.com
Hi MathGroup, I have the following script of Mathematica: points1 = Flatten[Table[{i, j, 5}, {i, -2, 2, 1}, {j, -2, 2, 1}], 1]; points = Table[Transpose[Transpose[points1] - {0, 0, i}], {i, 1, 5}]; disetot = Table[ScatterPlot3D[points[[i]], PlotRange -> {0, 5.1}, AxesLabel -> {X, Y, Z}, PlotStyle -> {RGBColor[i/Dimensions[points][[1]], 0, 0], PointSize[0.0083]},DisplayFunction -> Identity], {i, 1, Dimensions[points][[1]]}]; Show[disetot, DisplayFunction -> $DisplayFunction]; 'disetot' is a list of graphics. I would like the graphics of 'disetot' to appear inside a plot in their order (disetot[[1]], disetot[[2]], disetot[[3]], disetot[[4]] and so on...) as a movie, and export this movie as a file (.avi, .gif(animate), or others). How can I do? Thanks in advance, Umby