Question: 3D Rotation Animation of multiple implicitplot3d trouble

Hi all,

I have been trying for some time create an animation of a 3d plot I created rotating about the z-axis in Maple 15. I tried using the usual

animate(plot3d,f(x,y),orientation=[A,10],A=0..5)

but not only does that produce an error when I try to do the same thing with an implicitplot3d function, it also doesn't work when I try to animate multiple plots in the same graph, whether implicit functions or regular plot3d ones. I am creating a model that contains a large cylinder with some smaller spheres in it, some of the code is as follows:

P := multiple(implicitplot3d, [(x-3)^2+y^2+(z-1)^2 = 0.05, x = 2.7 .. 3, y = -0.3 .. 0.3, z = 0.7 .. 1.3, color = red, numpoints = 1000, style = wireframe],[x^2+y^2 = 9, x = -3 .. 3, y = -3 .. 3, z = 0 .. 7.33, color = "Goldenrod", transparency = .85, style = surface]);

C := coordplot(polar, [0 .. 3, 0 .. 2*Pi], grid = [1, 13]);
f := transform(proc (x, y) options operator, arrow; [x, y, 0] end proc);
display({P, f(C)});

If someone could please tell me a way to create a rotation animation of multiple 3d implicit plots, specifically relating to this code that also has polar axes added to the plot, it would be immensely helpful to me.

Thanks for your help.

Please Wait...