假设我有两个大小相等的二维矩阵,并为每个矩阵创建一个曲面图。
有没有办法链接两个图的轴,以便可以同时在同一方向上对它们进行 3D 旋转?
问问题
5908 次
2 回答
14
玩ActionPostCallback
并且ActionPreCallback
肯定是一种解决方案,但可能不是最有效的解决方案。可以使用linkprop
函数来同步相机位置属性。
linkprop([h(1) h(2)], 'CameraPosition'); %h is the axes handle
linkprop
可以同步两个或多个axes
(2D 或 3D)的任何图形属性。它可以看作是linkaxes
适用于 2D 绘图并axes
仅同步限制的功能的扩展。在这里,我们可以使用linkprop
来同步相机位置属性,CameraPosition
即旋转时修改的属性axes
。
这是一些代码
% DATA
[X,Y] = meshgrid(-8:.5:8);
R = sqrt(X.^2 + Y.^2) + eps;
Z1 = sin(R)./R;
Z2 = sin(R);
% FIGURE
figure;
hax(1) = subplot(1,2,1); %give the first axes a handle
surf(Z1);
hax(2) = subplot(1,2,2); %give the second axes a handle
surf(Z2)
% synchronize the camera position
linkprop(hax, 'CameraPosition');
您可以拥有一个图形属性列表
graph_props = fieldnames(get(gca));
于 2013-09-12T14:53:26.207 回答
5
一种方法是在旋转事件上注册回调并在两个轴上同步新状态。
function syncPlots(A, B)
% A and B are two matrices that will be passed to surf()
s1 = subplot(1, 2, 1);
surf(A);
r1 = rotate3d;
s2 = subplot(1, 2, 2);
surf(B);
r2 = rotate3d;
function sync_callback(~, evd)
% Get view property of the plot that changed
newView = get(evd.Axes,'View');
% Synchronize View property of both plots
set(s1, 'View', newView);
set(s2, 'View', newView);
end
% Register Callbacks
set(r1,'ActionPostCallback',@sync_callback);
set(r1,'ActionPreCallback',@sync_callback);
set(r2,'ActionPostCallback',@sync_callback);
set(r2,'ActionPreCallback',@sync_callback);
end
于 2013-09-12T13:34:30.410 回答