I find it a little annoying.
I am making a 3D graph, initially it appears in the default orientation. Then, using the mouse, I rotate it somehow.
Now I run the command again, expecting to get the original form (i.e. the original orientation, before I turned it with the mouse), but instead it just gives me the same plot that I have on the screen, i.e. seems to have saved / memorized the last point of view in this output cell.
I wanted him to return to the starting point. So, I delete the output cell to make it happen.
How do you think it works? Forcing to remove cell output is annoying when I try. I think it should return to the original default orientation.
Graphics3D[ Cuboid[{-.1,-.1,-.1},{.1,.1,.1}], AxesOrigin->{0,0,0}, PlotRange->{{-1,1},{-1,1},{-1,1}}, Axes->True, AxesLabel->{"X","Y","Z"}, Ticks->None]
If you run above and then move the plot and then run the command again, you will see what I mean.
version 8.0.01
EDIT:
Stranger: I added a viewpoint parameter to make it display by default, but the same result. He remembers the last point of view. The following is the default view using.
Graphics3D[ Cuboid[{-.1,-.1,-.1},{.1,.1,.1}], AxesOrigin->{0,0,0}, PlotRange->{{-1,1},{-1,1},{-1,1}}, Axes->True, AxesLabel->{"X","Y","Z"}, ViewPoint->{1.3,-2.4,2}, Ticks->None]
I find it strange.