Question: animate3d, is this possible using pointplots?

I have an array called plotter[1..20]; each element in the array is a set of coordinates for a point plot in 3d.

ie:

print(plotter[1]);

output: ARRAY([1..105],[(1)=(3,3,4), (2)=(2,3,4)....etc   ]

I am able to plot them individually, but the different array elements are dependent on each other and I want to see how they change over time.


Ideally I would like to use animate3d but I don't feel like the parameters support what I'm trying to do. Is there any other function which would work for this process?

Please Wait...