I know this is not the first question on creating an animation of a 3D plot, but I found no answer to the following question: How can I create an animated rotating plot with axes labels that are readable? What I currently have doesn't look good. The axes colors are weird and irregular, the cube rotates not around its center and the axes labels jump around to different axes.
My code currently is adapted from this answer
anim = Table[
RegionPlot3D[
0 <= x <= y <= z <= 1, {x, 0, 1}, {y, 0, 1}, {z, 0, 1},
PlotRange -> {{0, 1.2}, {0, 1.2}, {0, 1.2}},
PlotStyle -> Opacity[0.7], Boxed -> False,
ViewCenter -> {0.5, 0.5, 0.5},
ViewVector -> {5 Sin[t], 5 Cos[t], 0} ], {t, 0, 2*Pi,
Pi/30}]; Export["animated.gif", anim]
I want it to look similar to the following. Also the plot should rotate exactly once around its axis so that the loop of the gif isn't noticeable. Great would be if there was one variable which allows to quickly change the speed of the rotation without breaking that it rotates exactly once.




I get the same artifacts on the axes as before. This leads me to believe that this has something to do with my system, though I can't see why that would be. I'm using the latest version 11.3 of Mathematica (student edition) and the latest macOS 10.13.4 on a recent MacBook Pro.
– mdcq May 28 '18 at 07:22Rasterize, you an explicit optionRasterSize -> 320and then you wrap the wholeRasterizecall withImageResize[..., 300]. In addition to that, please check what your settings for Preferences -> Appearance -> Graphics are. – halirutan May 28 '18 at 09:11