Reputation: 25703
As we rasterize 3D images at higher and higher resolution, every image element should get proportionally bigger and bigger. However, tick marks stop growing after a while. Is there a way to ensure that tick marks should grown proportionally to the rest of the graphic, like text does?
Illustration:
g = Graphics3D[Sphere[], Axes -> True, ImageSize -> 200]
Table[Image[
ImageResize[Rasterize[g, "Image", ImageResolution -> n 72],
Scaled[1/n]], Magnification -> 1], {n, 6}]
Column[Table[
Image[Rasterize[g, "Image", ImageResolution -> n 72], Magnification -> 1],
{n, 6}], Alignment -> Left]
Click here to see the output (too big to be conveniently inlined)
Upvotes: 9
Views: 3827
Reputation: 151
See http://reference.wolfram.com/mathematica/ref/Ticks.html "More information" and "Application" sections. You can specify tick length like this:
Upvotes: 2