[204] | 1 | %'mouse_up': function activated when the mouse button is released |
---|
| 2 | %------------------------------------------------------------------------ |
---|
| 3 | % function mouse_up(hObject,eventdata,handles) |
---|
| 4 | % activated by the command: |
---|
| 5 | % set(hObject,'WindowButtonUpFcn',{'mouse_up'}), |
---|
| 6 | % where hObject is the handle of the figure |
---|
| 7 | |
---|
| 8 | %AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA |
---|
| 9 | % Copyright Joel Sommeria, 2008, LEGI / CNRS-UJF-INPG, sommeria@coriolis-legi.org. |
---|
| 10 | %AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA |
---|
| 11 | % This file is part of the toolbox UVMAT. |
---|
| 12 | % |
---|
| 13 | % UVMAT is free software; you can redistribute it and/or modify |
---|
| 14 | % it under the terms of the GNU General Public License as published by |
---|
| 15 | % the Free Software Foundation; either version 2 of the License, or |
---|
| 16 | % (at your option) any later version. |
---|
| 17 | % |
---|
| 18 | % UVMAT is distributed in the hope that it will be useful, |
---|
| 19 | % but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 20 | % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 21 | % GNU General Public License (file UVMAT/COPYING.txt) for more details. |
---|
| 22 | %AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA |
---|
| 23 | |
---|
| 24 | function mouse_up(hObject,eventdata,handles) |
---|
| 25 | %MouseAction='none'; %default |
---|
| 26 | test_zoom=0;%default |
---|
| 27 | test_ruler=0;%default |
---|
| 28 | currentfig=hObject; |
---|
| 29 | tagfig=get(currentfig,'tag'); |
---|
| 30 | currentaxes=gca; %store the current axes handle |
---|
| 31 | AxeData=get(currentaxes,'UserData'); |
---|
| 32 | if isfield(AxeData,'CurrentOrigin') |
---|
| 33 | CurrentOrigin=AxeData.CurrentOrigin; |
---|
| 34 | end |
---|
| 35 | if isfield(AxeData,'ParentRect')% case of a zoom plot as current axis |
---|
| 36 | parentaxes=get(AxeData.ParentRect,'parent'); |
---|
| 37 | AxeData=get(parentaxes,'UserData'); |
---|
| 38 | controlGUI=get(parentaxes,'parent');%handles of the GUI parent of the zoom plot |
---|
| 39 | hhcurrentfig=guidata(controlGUI); |
---|
| 40 | testsubplot=1; |
---|
| 41 | else |
---|
| 42 | hhcurrentfig=guidata(currentfig);%the current figure is a GUI (uvmat or view_field) |
---|
| 43 | testsubplot=0; |
---|
| 44 | end |
---|
| 45 | test_zoom=get(hhcurrentfig.zoom,'Value'); |
---|
| 46 | |
---|
| 47 | huvmat=findobj(allchild(0),'tag','uvmat');%find the uvmat interface handle |
---|
| 48 | if ~isempty(huvmat) |
---|
| 49 | hhuvmat=guidata(huvmat); |
---|
| 50 | UvData=get(huvmat,'UserData'); |
---|
| 51 | test_ruler=~test_zoom && isequal(get(hhuvmat.MenuRuler,'checked'),'on');%test for ruler action, second priority |
---|
| 52 | end |
---|
| 53 | test_drawing=0;%default |
---|
| 54 | |
---|
| 55 | %% finalize the fabrication or the translation/deformation of an object and plot the corresponding projected field |
---|
| 56 | if ~isempty(huvmat) && isfield(AxeData,'Drawing') && ~isequal(AxeData.Drawing,'off') && isfield(AxeData,'CurrentObject')... |
---|
| 57 | && ~isempty(AxeData.CurrentObject) && ishandle(AxeData.CurrentObject) |
---|
| 58 | xy=get(currentaxes,'CurrentPoint');%xy(1,1),xy(1,2): current x,y positions in axes coordinates |
---|
| 59 | PlotData=get(AxeData.CurrentObject,'UserData');%get data attached to the current projection object |
---|
| 60 | IndexObj=PlotData.IndexObj; |
---|
| 61 | ObjectData=UvData.Object{IndexObj}; |
---|
| 62 | ObjectData.enable_plot=1; |
---|
| 63 | |
---|
| 64 | % ending translation |
---|
| 65 | if isequal(AxeData.Drawing,'translate') |
---|
| 66 | XYData=AxeData.CurrentOrigin; |
---|
| 67 | DX=xy(1,1)-XYData(1);%translation from initial position |
---|
| 68 | DY=xy(1,2)-XYData(2); |
---|
| 69 | ObjectData.Coord(:,1)=ObjectData.Coord(:,1)+DX; |
---|
| 70 | ObjectData.Coord(:,2)=ObjectData.Coord(:,2)+DY; |
---|
| 71 | |
---|
| 72 | %ending object deformation |
---|
| 73 | elseif isequal(AxeData.Drawing,'deform') |
---|
| 74 | ind_move=AxeData.CurrentIndex; |
---|
| 75 | ObjectData.Coord(ind_move,1)=xy(1,1); |
---|
| 76 | ObjectData.Coord(ind_move,2)=xy(1,2); |
---|
| 77 | |
---|
| 78 | %creating object |
---|
| 79 | else |
---|
| 80 | if strcmp(ObjectData.Style,'line')||strcmp(ObjectData.Style,'polyline')||... |
---|
| 81 | strcmp(ObjectData.Style,'polygon')||strcmp(ObjectData.Style,'points') |
---|
| 82 | if isfield(AxeData,'ObjectCoord') && size(AxeData.ObjectCoord,2)==3 |
---|
| 83 | xy(1,3)=AxeData.ObjectCoord(1,3); % z coordinate of the mouse: to generalise ... |
---|
| 84 | else |
---|
| 85 | xy(1,3)=0; % z coordinate set to 0 by default |
---|
| 86 | end |
---|
| 87 | if ~isequal(ObjectData.Coord,xy(1,:)) |
---|
| 88 | ObjectData.Coord=[ObjectData.Coord ;xy(1,:)];% append the coordiantes marked by the mouse to the eobject |
---|
| 89 | end |
---|
| 90 | elseif isequal(ObjectData.Style,'rectangle')||isequal(ObjectData.Style,'ellipse')||isequal(ObjectData.Style,'volume') |
---|
| 91 | XYData=AxeData.CurrentOrigin; |
---|
| 92 | ObjectData.Coord(1,1)=(xy(1,1)+XYData(1))/2;%origin rectangle, x coordinate |
---|
| 93 | ObjectData.Coord(1,2)=(xy(1,2)+XYData(2))/2; |
---|
| 94 | ObjectData.RangeX=abs(xy(1,1)-XYData(1))/2;%rectangle width |
---|
| 95 | ObjectData.RangeY=abs(xy(1,2)-XYData(2))/2;%rectangle height |
---|
| 96 | elseif isequal(ObjectData.Style,'plane') %case of 'plane' |
---|
| 97 | DX=(xy(1,1)-ObjectData.Coord(1,1)); |
---|
| 98 | DY=(xy(1,2)-ObjectData.Coord(1,2)); |
---|
| 99 | ObjectData.Phi=(angle(DX+i*DY))*180/pi;%rectangle width |
---|
| 100 | if isfield(ObjectData,'RangeX') |
---|
| 101 | XMax=sqrt(DX*DX+DY*DY); |
---|
| 102 | if XMax>max(ObjectData.RangeX) |
---|
| 103 | ObjectData.RangeX=[min(ObjectData.RangeX) XMax]; |
---|
| 104 | end |
---|
| 105 | end |
---|
| 106 | end |
---|
| 107 | end |
---|
| 108 | if strcmp(ObjectData.Style,'rectangle')||strcmp(ObjectData.Style,'ellipse') |
---|
| 109 | NbDefPoint=1; |
---|
| 110 | elseif strcmp(ObjectData.Style,'line')|| strcmp(ObjectData.Style,'plane'); |
---|
| 111 | NbDefPoint=2; |
---|
| 112 | else |
---|
| 113 | NbDefPoint=3; |
---|
| 114 | end |
---|
| 115 | |
---|
| 116 | %show object coordinates in the GUI set_object |
---|
| 117 | h_set_object=findobj(allchild(0),'Tag','set_object'); |
---|
| 118 | hh_set_object=guidata(h_set_object); |
---|
| 119 | set(hh_set_object.XObject,'String',num2str(ObjectData.Coord(:,1),4)); |
---|
| 120 | set(hh_set_object.YObject,'String',num2str(ObjectData.Coord(:,2),4)); |
---|
| 121 | set(hh_set_object.ZObject,'String',num2str(ObjectData.Coord(:,3),4)); |
---|
| 122 | if strcmp(ObjectData.Style,'rectangle')||strcmp(ObjectData.Style,'ellipse') |
---|
| 123 | set(hh_set_object.XMax,'String',num2str(ObjectData.RangeX,4)); |
---|
| 124 | set(hh_set_object.YMax,'String',num2str(ObjectData.RangeY,4)); |
---|
| 125 | end |
---|
| 126 | if NbDefPoint<=2 || isequal(get(currentfig,'SelectionType'),'alt') ||... |
---|
| 127 | strcmp(AxeData.Drawing,'translate') || strcmp(AxeData.Drawing,'deform');%stop drawing |
---|
| 128 | AxeData.CurrentOrigin=[]; %suppress the current origin |
---|
| 129 | if isequal(ObjectData.Style,'line') && size(ObjectData.Coord,1)<=1 |
---|
| 130 | AxeData.Drawing='off'; |
---|
| 131 | set(currentaxes,'UserData',AxeData); |
---|
| 132 | return % line needs at leqst two points |
---|
| 133 | end |
---|
| 134 | if ~isempty(ObjectData) |
---|
| 135 | % testmask=0; |
---|
| 136 | % hmask=findobj(huvmat,'Tag','makemask'); |
---|
| 137 | % if ~isempty(hmask) |
---|
| 138 | % testmask=get(hmask,'Value'); |
---|
| 139 | % end |
---|
| 140 | |
---|
| 141 | %% update the object representation |
---|
| 142 | ObjectData.DisplayHandle_uvmat=UvData.Object{IndexObj}.DisplayHandle_uvmat; |
---|
| 143 | ObjectData.DisplayHandle_view_field=UvData.Object{IndexObj}.DisplayHandle_view_field; |
---|
| 144 | UvData.Object{IndexObj}=ObjectData;%update the current object properties |
---|
| 145 | hhuvmat=guidata(huvmat); |
---|
| 146 | IndexObj_1=get(hhuvmat.list_object_1,'Value'); |
---|
| 147 | IndexObj_2=get(hhuvmat.list_object_2,'Value'); |
---|
| 148 | UvData.Object=update_obj(UvData,IndexObj_1,IndexObj_2); |
---|
| 149 | |
---|
| 150 | %% plot the field projected on the object |
---|
| 151 | ProjData= proj_field(UvData.Field,ObjectData);%project the current interface field on ObjectData |
---|
| 152 | if ~isempty(ProjData) |
---|
| 153 | if strcmp(tagfig,'uvmat')% uvmat plot selected, projection plot seen on view_field |
---|
| 154 | hview_field=findobj(allchild(0),'tag','view_field'); |
---|
| 155 | if isempty(hview_field) |
---|
| 156 | hview_field=view_field; |
---|
| 157 | end |
---|
| 158 | ViewFieldData=get(hview_field,'UserData'); |
---|
| 159 | ViewFieldData.axes3=ProjData; |
---|
| 160 | set(hview_field,'UserData',ViewFieldData) |
---|
| 161 | hh_plotfield=guidata(hview_field); |
---|
| 162 | else |
---|
| 163 | UvData.axes3=ProjData; |
---|
| 164 | hh_plotfield=hhuvmat; |
---|
| 165 | end |
---|
| 166 | [PlotType,PlotParam]=plot_field(ProjData,hh_plotfield.axes3,read_plot_param(hh_plotfield));%update an existing field plot |
---|
| 167 | write_plot_param(hh_plotfield,PlotParam); %update the display of plotting parameters for the current object |
---|
| 168 | end |
---|
| 169 | set(hhuvmat.edit_object,'BackgroundColor',[1 1 0]);% paint the edit text in yellow |
---|
| 170 | set(hhuvmat.edit_object,'Value',1);% |
---|
| 171 | set(hhuvmat.edit_object,'Enable','on');% |
---|
| 172 | set(hhuvmat.MenuEditObject,'Enable','on');% |
---|
| 173 | set(hhuvmat.MenuEdit,'Enable','on');% |
---|
| 174 | end |
---|
| 175 | else |
---|
| 176 | AxeData.CurrentOrigin=[xy(1,1) xy(1,2)]; %the current point becomes the new current origin |
---|
| 177 | test_drawing=1;%allow continuation of drawing object |
---|
| 178 | UvData.Object{IndexObj}=ObjectData; |
---|
| 179 | end |
---|
| 180 | hother=findobj('Tag','deformpoint');%find all the deformpoints |
---|
| 181 | set(hother,'Color','b');%reset all the deformpoints in 'blue' |
---|
| 182 | else |
---|
| 183 | test_drawing=0; |
---|
| 184 | end |
---|
| 185 | |
---|
| 186 | %% creation of a new zoom plot |
---|
| 187 | if isequal(get(currentfig,'SelectionType'),'normal');%if left button has been pressed |
---|
| 188 | hparentfig=currentfig; |
---|
| 189 | %open or update a new zoom figure if a rectangle has been drawn |
---|
| 190 | if ishandle(currentaxes); |
---|
| 191 | if isfield(AxeData,'CurrentRectZoom') && ~isempty(AxeData.CurrentRectZoom) && ishandle(AxeData.CurrentRectZoom) |
---|
| 192 | PosRect=get(AxeData.CurrentRectZoom,'Position'); |
---|
| 193 | if isfield(AxeData,'CurrentVec') && ~isempty(AxeData.CurrentVec) && ishandle(AxeData.CurrentVec) |
---|
| 194 | delete(AxeData.CurrentVec) |
---|
| 195 | end |
---|
| 196 | if ~testsubplot |
---|
| 197 | hfig2=figure;%create new figure |
---|
| 198 | set(hfig2,'name','zoom') |
---|
| 199 | set(hfig2,'Units','normalized') |
---|
| 200 | set(hfig2,'Position',[0.2 0.33 0.6 0.6]); |
---|
| 201 | map=colormap(currentaxes); |
---|
| 202 | colormap(map);%transmit the current colormap to the zoom fig |
---|
[221] | 203 | set(hfig2,'Position',[0.2 0.33 0.6 0.6]); |
---|
[204] | 204 | set(hfig2,'Unit','normalized') |
---|
| 205 | set(hfig2,'KeyPressFcn',{@keyboard_callback,handles})%set keyboard action function |
---|
| 206 | set(hfig2,'WindowButtonMotionFcn',{@mouse_motion,handles})%set mouse action function |
---|
| 207 | set(hfig2,'WindowButtonDownFcn',{@mouse_down})%set mouse click action function |
---|
| 208 | set(hfig2,'WindowButtonUpFcn',{@mouse_up,handles}) |
---|
| 209 | set(hfig2,'DeleteFcn',{@close_fig,AxeData.CurrentRectZoom,'zoom'}) |
---|
| 210 | set(hfig2,'UserData',AxeData.CurrentRectZoom)% record the parent object (zoom rectangle) in the new fig |
---|
| 211 | AxeData.ZoomAxes=copyobj(currentaxes,hfig2); %copy the current graph axes to the zoom figure |
---|
| 212 | ChildAxeData=get(AxeData.ZoomAxes,'UserData'); |
---|
| 213 | if isfield(ChildAxeData,'ParentGUI') |
---|
| 214 | ChildAxeData=rmfield(ChildAxeData,'ParentGUI');%no parent GUI, e.g. uvmat, for the new plot |
---|
| 215 | end |
---|
| 216 | %figure(hfig2) |
---|
| 217 | %set(0,'CurrentFigure',hfig2)% the zoom figure becomes the current figure |
---|
| 218 | set(AxeData.ZoomAxes,'Position',[0.1300 0.1100 0.7750 0.8150])% standard axes position on a figure |
---|
| 219 | hcol=findobj(hparentfig,'Tag','Colorbar'); %look for colorbar axes |
---|
| 220 | if ~isempty(hcol) |
---|
| 221 | hcol_new=colorbar; |
---|
| 222 | YTick=get(hcol,'YTick'); |
---|
| 223 | YTicklabel=get(hcol,'Yticklabel'); |
---|
| 224 | colbarlim=get(hcol,'YLim'); |
---|
| 225 | newcolbarlim=get(hcol_new,'YLim'); |
---|
| 226 | scale_bar=(newcolbarlim(2)-newcolbarlim(1))/(colbarlim(2)-colbarlim(1)); |
---|
| 227 | YTick_rescaled=newcolbarlim(1)+scale_bar*(YTick-colbarlim(1)); |
---|
| 228 | set(hcol_new,'YTick',YTick_rescaled); |
---|
| 229 | set(hcol_new,'Yticklabel',YTicklabel); |
---|
| 230 | end |
---|
[221] | 231 | end |
---|
| 232 | ChildAxeData.CurrentRectZoom=[]; % no rect zoom in the new window |
---|
| 233 | ChildAxeData.Drawing='off'; |
---|
| 234 | ChildAxeData.ParentRect=AxeData.CurrentRectZoom;%set the rectangle as a 'parent' associated to the new axe |
---|
| 235 | PosRect=CurrentOrigin; |
---|
| 236 | xy=get(currentaxes,'CurrentPoint');%xy(1,1),xy(1,2): current x,y positions in axes coordinates |
---|
| 237 | set(AxeData.ZoomAxes,'Xlim',[PosRect(1) xy(1,1)]) |
---|
| 238 | set(AxeData.ZoomAxes,'Ylim',[PosRect(2) xy(1,2)]) |
---|
[204] | 239 | set(AxeData.ZoomAxes,'UserData',ChildAxeData);%update the AxeData of the new axes |
---|
| 240 | end |
---|
| 241 | end |
---|
| 242 | end |
---|
| 243 | |
---|
[210] | 244 | %% zoom in or out by a factor 2 if no new figure is created |
---|
[204] | 245 | if test_zoom |
---|
| 246 | xy=get(currentaxes,'CurrentPoint');%xy(1,1),xy(1,2): current x,y positions in axes coordinates |
---|
| 247 | xlim=get(currentaxes,'XLim'); |
---|
| 248 | ylim=get(currentaxes,'YLim'); |
---|
[221] | 249 | % if left mouse button has been pressed, zoom in by a factor of 2 |
---|
[210] | 250 | if isequal(get(currentfig,'SelectionType'),'normal');%if left button has been pressed, zoom in by a factor of 2 |
---|
[204] | 251 | xlim(1)=0.5*xy(1,1)+0.5*xlim(1); |
---|
[252] | 252 | xlim(2)=0.5*xy(1,1)+0.5*xlim(2);%double the field whith the middle at the selected points |
---|
[204] | 253 | set(currentaxes,'XLim',xlim) |
---|
| 254 | ylim(2)=0.5*xy(1,2)+0.5*ylim(2); |
---|
| 255 | ylim(1)=0.5*xy(1,2)+0.5*ylim(1); |
---|
| 256 | set(currentaxes,'YLim',ylim) |
---|
[221] | 257 | % if right mouse button has been pressed, zoom out by a factor of 2 |
---|
| 258 | else |
---|
[252] | 259 | xlim(1)=2*xlim(1)-xy(1,1);% reverse of the zoom on action |
---|
[204] | 260 | xlim(2)=2*xlim(2)-xy(1,1); |
---|
| 261 | ylim(1)=2*ylim(1)-xy(1,2); |
---|
| 262 | ylim(2)=2*ylim(2)-xy(1,2); |
---|
[210] | 263 | if isfield(AxeData,'RangeX')&& isfield(AxeData,'RangeY') |
---|
[204] | 264 | xlim(1)=max(AxeData.RangeX(1),xlim(1)); |
---|
| 265 | xlim(2)=min(AxeData.RangeX(2),xlim(2)); |
---|
| 266 | ylim(1)=max(AxeData.RangeY(1),ylim(1)); |
---|
| 267 | ylim(2)=min(AxeData.RangeY(2),ylim(2)); |
---|
[252] | 268 | if ylim(1)>=ylim(2)|| xlim(1)>=xlim(2) |
---|
| 269 | xlim=AxeData.RangeX; |
---|
| 270 | ylim=AxeData.RangeY; |
---|
| 271 | end |
---|
[221] | 272 | % desactivate the zoom if the full field is visible within the axes |
---|
[204] | 273 | if isequal(xlim,AxeData.RangeX) && isequal(ylim,AxeData.RangeY) |
---|
| 274 | set(hhuvmat.zoom,'Value',0) |
---|
| 275 | set(hhuvmat.zoom,'BackgroundColor',[0.7 0.7 0.7]) |
---|
[210] | 276 | set(hhuvmat.FixLimits,'Value',0) |
---|
| 277 | set(hhuvmat.FixLimits,'BackgroundColor',[0.7 0.7 0.7]) |
---|
[204] | 278 | end |
---|
| 279 | end |
---|
| 280 | set(currentaxes,'XLim',xlim) |
---|
| 281 | set(currentaxes,'YLim',ylim) |
---|
| 282 | %test whther zoom out is operating (to inactivate AxedAta |
---|
| 283 | if ~isfield(AxeData,'CurrentXLim')|| ~isequal(xlim,AxeData.CurrentXLim) |
---|
| 284 | AxeData.CurrentXLim=xlim;% |
---|
| 285 | end |
---|
| 286 | end |
---|
| 287 | if isfield(AxeData,'LimEditBox')&& AxeData.LimEditBox% update display of the GUI containing the axis (uvmat or view_field) |
---|
| 288 | set(hhcurrentfig.MinX,'String',num2str(xlim(1))) |
---|
| 289 | set(hhcurrentfig.MaxX,'String',num2str(xlim(2))) |
---|
| 290 | set(hhcurrentfig.MinY,'String',num2str(ylim(1))) |
---|
| 291 | set(hhcurrentfig.MaxY,'String',num2str(ylim(2))) |
---|
| 292 | end |
---|
| 293 | end |
---|
| 294 | |
---|
| 295 | %% editing calibration point |
---|
| 296 | if ~test_zoom && isfield(AxeData,'Drawing') && isequal(AxeData.Drawing,'calibration') |
---|
| 297 | h_geometry_calib=findobj(allchild(0),'tag','geometry_calib'); %find the geomterty_calib GUI |
---|
| 298 | if ~isempty(h_geometry_calib) |
---|
| 299 | hh_geometry_calib=guidata(h_geometry_calib); |
---|
| 300 | edit_test=get(hh_geometry_calib.edit_append,'Value'); |
---|
| 301 | hh=findobj(currentaxes,'tag','calib_points');%look for handle of calibration points |
---|
| 302 | if ~isempty(hh) && edit_test |
---|
| 303 | index_point=get(hh,'UserData'); |
---|
| 304 | set(hh,'UserData',[])%remove edit mode |
---|
| 305 | h_ListCoord=hh_geometry_calib.ListCoord; %handles of the coordinate list |
---|
| 306 | Coord=get(h_ListCoord,'String'); |
---|
| 307 | data=read_geometry_calib(Coord); |
---|
| 308 | % val=get(h_ListCoord,'Value'); |
---|
| 309 | xy=get(currentaxes,'CurrentPoint');%xy(1,1),xy(1,2): current x,y positions in axes coordinates |
---|
| 310 | data.Coord(index_point,4)=xy(1,1); |
---|
| 311 | data.Coord(index_point,5)=xy(1,2); |
---|
| 312 | for ipoint=1:size(data.Coord,1) |
---|
| 313 | for jcoord=1:5 |
---|
| 314 | Coord_cell{ipoint,jcoord}=num2str(data.Coord(ipoint,jcoord),4);%display coordiantes with 4 digits |
---|
| 315 | end |
---|
| 316 | end |
---|
| 317 | Tabchar=cell2tab(Coord_cell,' | '); |
---|
| 318 | Tabchar=[Tabchar ;{'......'}]; |
---|
| 319 | set(h_ListCoord,'String',Tabchar) |
---|
| 320 | set(hh,'XData',data.Coord(:,4)) |
---|
| 321 | set(hh,'YData',data.Coord(:,5)) |
---|
| 322 | end |
---|
| 323 | end |
---|
| 324 | end |
---|
| 325 | |
---|
| 326 | %% finalising ruler |
---|
| 327 | if test_ruler |
---|
| 328 | set(hhuvmat.MenuRuler,'checked','off')%desable the ruler option in uvmat |
---|
| 329 | xy=get(currentaxes,'CurrentPoint');% get the current mouse coordinates |
---|
| 330 | RulerCoord=[AxeData.RulerCoord ;xy(1,1:2)];% append the recorded ruler origin to the current mouse coordinates |
---|
| 331 | RulerCoord=diff(RulerCoord,1);% coordiante difference between segment end and beginning |
---|
| 332 | RulerCoord=RulerCoord(1)+i*RulerCoord(2); |
---|
| 333 | distance=abs(RulerCoord); |
---|
| 334 | azimuth=(180/pi)*angle(RulerCoord); |
---|
| 335 | msgbox_uvmat('RULER','',['length: ' num2str(distance,3) ', angle(degrees): ' num2str(azimuth,3)]) |
---|
| 336 | delete(AxeData.RulerHandle)%delete the ruler graphic object |
---|
| 337 | AxeData=rmfield(AxeData,'RulerHandle');%remove the ruler handle in AxeData |
---|
| 338 | AxeData.Drawing='off';%exit the ruler drawing mode |
---|
| 339 | end |
---|
| 340 | |
---|
| 341 | %% display the data of the current object selected with the mouse right click |
---|
| 342 | if isequal(get(currentfig,'SelectionType'),'alt') && ~test_zoom && (~isfield(AxeData,'Drawing')||~isequal(AxeData.Drawing,'create')) |
---|
| 343 | hother=findobj('Tag','proj_object');%find all the proj objects |
---|
| 344 | nbselect=0; |
---|
| 345 | %test the existence of selected objects: |
---|
| 346 | for iproj=1:length(hother); |
---|
| 347 | iselect=isequal(get(hother(iproj),'Selected'),'on');%reset all the proj objects in 'blue' by default |
---|
| 348 | nbselect=nbselect+iselect; |
---|
| 349 | end |
---|
| 350 | hother=findobj('Tag','proj_object','Type','line');%find all the proj objects |
---|
| 351 | set(hother,'Color','b');%reset all the proj objects in 'blue' by default |
---|
| 352 | set(hother,'Selected','off') |
---|
| 353 | hother=findobj('Tag','proj_object','Type','rectangle'); |
---|
| 354 | set(hother,'EdgeColor','b'); |
---|
| 355 | set(hother,'Selected','off') |
---|
| 356 | hother=findobj('Tag','proj_object','Type','patch'); |
---|
| 357 | set(hother,'FaceColor','b'); |
---|
| 358 | if isequal(get(gco,'Type'),'image') |
---|
| 359 | currentobj=get(gco,'parent');%parent axes of the image |
---|
| 360 | else |
---|
| 361 | currentobj=gco;%default |
---|
| 362 | end |
---|
[221] | 363 | % if ((nbselect==0) && isequal(get(currentobj,'Type'),'axes')) || isequal(currentobj,huvmat) |
---|
| 364 | % currentfig=get(currentobj,'parent'); |
---|
| 365 | % figname=get(currentfig,'name'); |
---|
| 366 | % eval(['global Data_' figname]) |
---|
| 367 | % eval(['Data_' figname '=get(currentobj,''UserData'')']); |
---|
| 368 | % evalin('base',['global Data_' figname])%make CurData global in the workspace |
---|
| 369 | % objtype=get(currentobj,'Type'); |
---|
| 370 | % display(['UserData of ' objtype ':']) |
---|
| 371 | % evalin('base',['Data_' figname]) %display CurData in the workspace |
---|
| 372 | % commandwindow %brings the Matlab command window to the front |
---|
| 373 | % end |
---|
[204] | 374 | end |
---|
| 375 | |
---|
| 376 | %% update |
---|
| 377 | if test_drawing==0 |
---|
| 378 | AxeData.Drawing='off';%stop current drawing action |
---|
| 379 | end |
---|
| 380 | set(currentaxes,'UserData',AxeData); |
---|
| 381 | if ~isempty(huvmat) |
---|
| 382 | set(huvmat,'UserData',UvData); |
---|
| 383 | end |
---|
| 384 | |
---|
| 385 | |
---|
| 386 | |
---|