I am newbie to android development and currently I am studying the 3D animation by going through the file Rotate3dAnimation in ApiDemos project. This class shows the image in reverse order, I am trying to display this control to display the image in actual order but my bad luck continues. Could you please advice me which line that shows the image in reverse order?
Thanks,
Shan
The answer is simple you change the applyed rotations to:
applyRotation(-1, 0, 90); and applyRotation(1, 0, 90);
this is when you first call it and when you call it for the second half you use following:
I’ve commented out the old implementation.