刻度标记不会在图形中缩放 - 为什么以及如何解决这个问题?

时间:2012-01-10 15:08:38

标签: wolfram-mathematica

当我们以越来越高的分辨率光栅化3D图像时,每个图像元素应该按比例变大和变大。然而,刻度线在一段时间后停止增长。有没有办法确保刻度线应该与图形的其余部分成比例增长,就像文本一样?


插图:

g = Graphics3D[Sphere[], Axes -> True, ImageSize -> 200]

Table[Image[
  ImageResize[Rasterize[g, "Image", ImageResolution -> n 72], 
   Scaled[1/n]], Magnification -> 1], {n, 6}]

Mathematica graphics

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)

1 个答案:

答案 0 :(得分:2)

请参阅http://reference.wolfram.com/mathematica/ref/Ticks.html“更多信息”和“应用”部分。您可以像这样指定刻度长度:

Tick mark size Plot 3D with custom tick marks