概述
function mousedrag
global current_selected xy_start xdata_start ydata_start
h=plot(1,1,’*’);
set(h,‘ButtonDownFcn’,@select);
set(gcf,‘WindowButtonUpFcn’,@change_state,‘WindowButtonMotionFcn’,@move)
end
function select(obj,event)
global current_selected xy_start xdata_start ydata_start
set(obj,‘Selected’,‘on’);
current_selected=obj;
xy_start=get(gca,‘CurrentPoint’);
xdata_start=get(obj,‘xdata’);
ydata_start=get(obj,‘ydata’);
end
function change_state(obj,event)
global current_selected
set(current_selected,‘Selected’,‘off’);
current_selected=0;
end
function move(obj,event)
global current_selected xy_start xdata_start ydata_start
if current_selected~=0
xy_current=get(gca,‘CurrentPoint’);
dx=xy_current(1)-xy_start(1);
dy=xy_current(3)-xy_start(3);
set(current_selected,‘xdata’,xdata_start+dx,‘ydata’,ydata_start+dy);
end
end
最后
以上就是包容飞鸟为你收集整理的matlab鼠标拖动一个点需要的最小代码,get,set和@选中-改变-拖动三个函数的使用的全部内容,希望文章能够帮你解决matlab鼠标拖动一个点需要的最小代码,get,set和@选中-改变-拖动三个函数的使用所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复