Mathematica:3D绘图,在用鼠标旋转3D图像的同时防止笔记本抖动?

Nas*_*ser 3 wolfram-mathematica

我注意到如果我使用鼠标旋转3D图像,当我用鼠标旋转图像时,笔记本界面本身会有一点抖动或抖动.

即3D图像本身所在的框架确实在笔记本上下移动了一点.

我尝试了所有我知道的技巧来防止这种情况,设置不同的ImagePadding,PlotRangePadding,ImageMargins,PlotRange,ContentSize等等但没有运气.

这是一个小例子,我只使用RegionPlot3D作为例子,但任何3D图都可以.

Manipulate[
      RegionPlot3D[True, 
                 {x,1,2},{y,1,2},{z,1,2},
                 AxesLabel-> label,
                 ImageSize->{340,450},
                 ImagePadding->10,
                 ImageMargins->10,
                 MeshStyle->Automatic,
                 PlotRangePadding->1,
                 AxesOrigin->{0,0,0},                   
                 PlotRange->{{0,2},{0,2},{0,2}},
                 Boxed->False],
     {n,0,ControlType->None},

 SynchronousUpdating->False,
 ContinuousAction->False
 ]
Run Code Online (Sandbox Code Playgroud)

现在,如果您运行上述操作,并使用鼠标旋转小立方体,一旦释放鼠标,您将开始注意到笔记本电脑确实抖动了一点.随意尝试任何其他设置.

这很烦人,因为我不喜欢这种震动效果.让我头晕目眩.

这里的任何专家都可能知道它是否是我在Plot命令中忽略的选项设置,或者可能是其他什么?当我用鼠标旋转图像时,我希望绘图框和笔记本本身不要摇晃.当释放鼠标时,问题再次出现.

Windows 7上的Mathematica 8.0.1.

谢谢--Nasser ps.我试图搜索之前是否曾被问过,但没有发现某些东西.

Dr.*_*ius 5

尝试:

SphericalRegion -> True  
Run Code Online (Sandbox Code Playgroud)

像:

Manipulate[
 RegionPlot3D[True, {x, 1, 2}, {y, 1, 2}, {z, 1, 2}, 
  AxesLabel -> label, SphericalRegion -> True, 
  ImageSize -> {340, 450}, ImagePadding -> 10, ImageMargins -> 10, 
  MeshStyle -> Automatic, PlotRangePadding -> 1, 
  AxesOrigin -> {0, 0, 0}, PlotRange -> {{0, 2}, {0, 2}, {0, 2}}, 
  Boxed -> False], {n, 0, ControlType -> None}, 
 SynchronousUpdating -> False, ContinuousAction -> False]
Run Code Online (Sandbox Code Playgroud)

来自帮助:

With SphericalRegion->True, the image of a particular object remains consistent
in size, regardless of the orientation of the object. 
Run Code Online (Sandbox Code Playgroud)

编辑

本回答中的使用示例:如何在Wolfram Mathematica中使用相机跟随对象创建2D(3D)动画?

HTH!