Change plot interaction mode on the fly

13 views (last 30 days)
I'm trying to change the behavior of the mouse pointer in a 3d axes. When you first open a figure it seems to do something similar to what I want, but not including pan.
What I would like to do:
  • Left click and drag will pan
  • middle click and drag will rotate
  • scroll wheel will zoom in and out
  • double click: enables datacursormode (this is a nice to have, but less important that the other stuff)
This is what I've tried to get this to work so far:
fig = figure();
set(fig, 'WindowButtonDownFcn', @interactModeCallback); % should handle the button presses
set(fig, 'WindowScrollWheelFcn', @interactModeCallback); % should handle scroll wheel
ground = 10000*membrane(1,40)-10000; % example plot
surf(linspace(-10000,10000,size(ground,1)),linspace(-10000,10000,size(ground,2)),ground);
function interactModeCallback(src, event)
click_type = get(src,'selectiontype');
even_type = event.EventName;
if strcmp('WindowMousePress', even_type) % Deal with all the click events
if strcmp('normal', click_type) % Left click will pan
disp('pan')
pan on;
elseif strcmp('extend', click_type) % middle click will rotate
disp('rotate3d')
rotate3d on;
elseif strcmp('open', click_type) % double click will select points
disp('datacursormode')
datacursormode on;
end
elseif strcmp('WindowScrollWheel', even_type) % Scrolling will zoom
disp('zoom')
zoom on;
end
end
There are 2 issues I'm running into:
  1. It takes two button clicks to actually move the plot. i.e. you must click > release > click > drag. I want click > drag
  2. My callback function is only called once. Once I have clicked I am locked into that mode. I have tried to fix this by adding a corresponding callback function to turn off the interaction mode on WindowButtonUpFnc but it doesn't change anything.
Any help is appreciated.

Accepted Answer

Prudhvi Peddagoni
Prudhvi Peddagoni on 29 Dec 2020
Hi,
  1. when you click on the mouse, you are selecting pan mode. So you have to click again for the callback function in the pan to execute.
  2. Callbacks are disabled when settings like pan, zoom etc are enabled because they interfere with the callback functions of these modes. That is the reason you couldn't call the callback function more than once.
Hope this helps.
  2 Comments
Graham Rowe
Graham Rowe on 2 Jan 2021
It does explain why I can't make it do what I want. There must be some work around though. Kind of annoying that the plotting capabilities in Matlab are so restrictive.
Thanks for your response.
Prudhvi Peddagoni
Prudhvi Peddagoni on 4 Jan 2021
You can find the workaround for this here.
Or you can just use the buttons showed in the image.

Sign in to comment.

More Answers (0)

Categories

Find more on Entering Commands in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!