source: trunk/src/plot_object.m @ 954

Last change on this file since 954 was 954, checked in by sommeria, 8 years ago

update calib modfied + various updates

File size: 21.7 KB
Line 
1%'plot_object': draws a projection object (points, line, plane...)
2%-------------------------------------------------------------------
3% function hh=plot_object(ObjectData,ProjObject,hplot,col)
4%
5%OUTPUT
6%             hh: handles of the graphic object (core part)
7%
8%INPUT:
9%
10% ObjectData: structure representing the object properties:
11%        .Type : style of projection object
12%        .Coord: set of coordinates defining the object position;
13%        .ProjMode=type of projection ;
14%       .ProjAngle=angle of projection;
15%       .DX,.DY,.DZ=increments;
16%       .YMax,YMin: min and max Y
17% ProjObject: projection object corresponding to the current plot (e. g. plane)
18% hplot: handle of the object plot to modify or if it is an axis, the axis
19%            where the object must be plotted, or if it is a figure the plotting figure
20% col: color of the plot, e;g; 'm', 'b' ..;
21
22%=======================================================================
23% Copyright 2008-2016, LEGI UMR 5519 / CNRS UGA G-INP, Grenoble, France
24%   http://www.legi.grenoble-inp.fr
25%   Joel.Sommeria - Joel.Sommeria (A) legi.cnrs.fr
26%
27%     This file is part of the toolbox UVMAT.
28%
29%     UVMAT is free software; you can redistribute it and/or modify
30%     it under the terms of the GNU General Public License as published
31%     by the Free Software Foundation; either version 2 of the license,
32%     or (at your option) any later version.
33%
34%     UVMAT is distributed in the hope that it will be useful,
35%     but WITHOUT ANY WARRANTY; without even the implied warranty of
36%     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
37%     GNU General Public License (see LICENSE.txt) for more details.
38%=======================================================================
39
40function [hh]=plot_object(ObjectData,ProjObject,hplot,col)
41
42%% default output
43hh=[];%default output
44% object representation is canceled if the field is not projected on a plane or is the same as the represented object
45if ~isfield(ObjectData,'Type')|| isequal(ProjObject,ObjectData)||~isfield(ProjObject,'Type')|| ~strcmp(ProjObject.Type,'plane')
46    if ~isempty(hplot) && ishandle(hplot) && ~strcmp(get(hplot,'Type'),'axes')
47        ObjectPlotData=get(hplot,'UserData');
48        if isfield(ObjectPlotData,'SubObject') & ishandle(ObjectPlotData.SubObject)
49            delete(ObjectPlotData.SubObject);
50        end
51        if isfield(ObjectPlotData,'DeformPoint') & ishandle(ObjectPlotData.DeformPoint)
52            delete(ObjectPlotData.DeformPoint);
53        end
54        delete(hplot)
55    end
56    return
57end
58XMin=0;%default range for the graph
59XMax=0;
60YMin=0;
61YMax=0;
62ZMin=0;
63ZMax=0;
64XMinRange=[];%default range set by input
65XMaxRange=[];
66YMinRange=[];
67YMaxRange=[];
68ZMinRange=[];
69ZMaxRange=[];
70
71%% determine the plotting axes (with handle 'haxes')
72test_newobj=1;
73if ishandle(hplot)
74    if isequal(get(hplot,'Tag'),'proj_object')% hplot is the handle of an object representation 
75        test_newobj=0;
76        haxes=get(hplot,'parent');
77        currentfig=get(haxes,'parent');
78    elseif isequal(get(hplot,'Type'),'axes')% hplot is the handle of an axis
79        haxes=hplot;
80        currentfig=get(hplot,'parent');
81    elseif isequal(get(hplot,'Type'),'figure')% hplot is the handle of a figure
82        set(0,'CurrentFigure',hplot);%set the input figure as the current one
83        haxes=findobj(hplot,'Type','axes');%look for axes in the figure
84        haxes=haxes(1);
85        currentfig=hplot;
86    else
87        currentfig=figure; %create new figure
88        hplot=axes;%create new axes
89        haxes=hplot;
90    end
91else
92    currentfig=figure; %create new figure
93    hplot=axes;%create new axes
94    haxes=hplot;
95end
96set(0,'CurrentFigure',currentfig)%set the currentfigure as the current one
97set(currentfig,'CurrentAxes',haxes);%set the current axes in the current figure
98
99%% default input parameters
100if ~isfield(ObjectData,'ProjMode')||isempty(ObjectData.ProjMode)
101     ObjectData.ProjMode='projection';%default
102end
103if ~isfield(ObjectData,'Coord')||isempty(ObjectData.Coord)
104     ObjectData.Coord=[0 0 0];%default
105end
106if isfield(ObjectData,'RangeX') && ~isempty(ObjectData.RangeX)
107    XMax=max(ObjectData.RangeX);
108    XMin=min(ObjectData.RangeX);
109        XMaxRange=max(ObjectData.RangeX);
110        if numel(ObjectData.RangeX)==2
111    XMinRange=min(ObjectData.RangeX);
112        end
113end
114if isfield(ObjectData,'RangeY')&&~isempty(ObjectData.RangeY)
115    YMax=max(ObjectData.RangeY);
116    YMin=min(ObjectData.RangeY);
117        YMaxRange=max(ObjectData.RangeY);
118        if numel(ObjectData.RangeY)==2
119    YMinRange=min(ObjectData.RangeY);
120        end
121end
122if isfield(ObjectData,'RangeZ')&&~isempty(ObjectData.RangeZ)
123    ZMax=max(ObjectData.RangeZ);
124    ZMin=min(ObjectData.RangeZ);
125    ZMaxRange=max(ObjectData.RangeZ);
126    ZMinRange=min(ObjectData.RangeZ);
127end
128if strcmp(ObjectData.Type,'points') && strcmp(ObjectData.ProjMode,'projection')
129    YMax=max(XMax,YMax);
130    YMax=max(YMax,ZMax);
131end
132sizcoord=size(ObjectData.Coord);
133
134%% determine the coordinates xline, yline,xsup,xinf, yinf,ysup determining the new object plot
135%test_line= isequal(ObjectData.Type,'points')||isequal(ObjectData.Type,'line')||...
136%   isequal(ObjectData.Type,'polyline')||isequal(ObjectData.Type,'polygon')|| isequal(ObjectData.Type,'plane')|| isequal(ObjectData.Type,'volume');
137%test_patch=isequal(ObjectData.ProjMode,'inside')||isequal(ObjectData.ProjMode,'outside')||isequal(ObjectData.Type,'volume')...
138%    ||isequal(ObjectData.ProjMode,'mask_inside')||isequal(ObjectData.ProjMode,'mask_outside');
139test_line=ismember(ObjectData.Type,{'points','line','polyline','polygon','plane','plane_z','volume'});
140test_patch=ismember(ObjectData.ProjMode,{'inside','outside','mask_inside','mask_outside'});
141if test_line
142    xline=ObjectData.Coord(:,1);
143    yline=ObjectData.Coord(:,2);
144    nbpoints=numel(xline);
145    switch ObjectData.Type
146        case 'line_x'
147            xline=[xline; ObjectData.RangeX(2)];%creating the line
148            yline=[yline; ObjectData.RangeY(2)];%creating the line
149        case 'polygon'
150            xline=[xline; ObjectData.Coord(1,1)];%closing the line
151            yline=[yline; ObjectData.Coord(1,2)];
152        case {'plane','volume'}
153            if ~isfield(ObjectData,'Angle')
154                ObjectData.Angle=[0 0 0];
155            end
156            phi=ObjectData.Angle(3)*pi/180;%angle in radians
157            x0=xline(1); y0=yline(1);
158            xlim=get(haxes,'XLim');
159            ylim=get(haxes,'YLim');
160            graph_scale=max(abs(xlim(2)-xlim(1)),abs(ylim(2)-ylim(1)))/2;% estimate the length of axes plots
161            XMax=graph_scale;
162            YMax=graph_scale;
163            XMin=-graph_scale;
164            YMin=-graph_scale;
165            if  ~isempty(XMaxRange)
166                XMax=XMaxRange;
167            end
168            if  ~isempty(XMinRange)
169                XMin=XMinRange;
170            end
171            if  ~isempty(YMaxRange)
172                YMax=YMaxRange;
173            end
174            if  ~isempty(YMinRange)
175                YMin=YMinRange;
176            end
177            % axes lines
178            xline=NaN(1,13);
179            xline(1)=x0+min(0,XMin)*cos(phi); % min end of the x axes
180            yline(1)=y0+min(0,XMin)*sin(phi);
181            xline(2)=x0+XMax*cos(phi);% max end of the x axes
182            yline(2)=y0+XMax*sin(phi);
183            xline(8)=x0-min(0,YMin)*sin(phi);% min end of the y axes
184            yline(8)=y0+min(0,YMin)*cos(phi);
185            xline(9)=x0-YMax*sin(phi);% max end of the y axes
186            yline(9)=y0+YMax*cos(phi);
187           
188            %arrows on x axis
189            arrow_scale=graph_scale/20;
190            xline(3)=xline(2)-arrow_scale*cos(phi-pi/8);
191            yline(3)=yline(2)-arrow_scale*sin(phi-pi/8);
192            xline(5)=xline(2);
193            yline(5)=yline(2);
194            xline(6)=xline(2)-arrow_scale*cos(phi+pi/8);
195            yline(6)=yline(2)-arrow_scale*sin(phi+pi/8);
196           
197            %arrows on y axis
198            xline(10)=xline(9)-arrow_scale*cos(phi+pi/2-pi/8);
199            yline(10)=yline(9)-arrow_scale*sin(phi+pi/2-pi/8);
200            xline(12)=xline(9);
201            yline(12)=yline(9);
202            xline(13)=xline(9)-arrow_scale*cos(phi+pi/2+pi/8);
203            yline(13)=yline(9)-arrow_scale*sin(phi+pi/2+pi/8);
204            %xline=[Xbeg_x Xend_x NaN Ybeg_x Yend_x];
205            %yline=[Xbeg_y Xend_y NaN Ybeg_y Yend_y];
206            %  dashed lines indicating bounds
207            xsup=NaN(1,5);
208            ysup=NaN(1,5);
209            if ~isempty(XMaxRange)
210                xsup(1)=xline(2)-YMin*sin(phi);
211                ysup(1)=yline(2)+YMin*cos(phi);
212                xsup(2)=xline(2)-YMax*sin(phi);
213                ysup(2)=yline(2)+YMax*cos(phi);
214            end
215            if ~isempty(YMaxRange)
216                xsup(2)=xline(2)-YMax*sin(phi);
217                ysup(2)=yline(2)+YMax*cos(phi);
218                xsup(3)=xline(9)+XMin*cos(phi);
219                ysup(3)=yline(9)+XMin*sin(phi);
220            end
221            if ~isempty(XMinRange)
222                xsup(3)=xline(9)+XMin*cos(phi);
223                ysup(3)=yline(9)+XMin*sin(phi);
224                xsup(4)=x0+XMin*cos(phi)-YMin*sin(phi);
225                ysup(4)=y0+XMin*sin(phi)+YMin*cos(phi);
226            end
227            if ~isempty(YMinRange)
228                xsup(4)=x0+XMin*cos(phi)-YMin*sin(phi);
229                ysup(4)=y0+XMin*sin(phi)+YMin*cos(phi);
230                xsup(5)=xline(8)-YMin*sin(phi);
231                ysup(5)=yline(8)+YMin*cos(phi);
232            end
233    end
234end
235SubLineStyle='none';%default
236if isfield(ObjectData,'ProjMode')
237    if isequal(ObjectData.ProjMode,'projection')
238        SubLineStyle='--'; %range of projection marked by dash
239        if isfield (ObjectData,'DX')
240            ObjectData=rmfield(ObjectData,'DX');
241        end
242        if isfield (ObjectData,'DY')
243            ObjectData=rmfield(ObjectData,'DY');
244        end
245    elseif isequal(ObjectData.ProjMode,'filter')
246        SubLineStyle=':';%range of projection not visible
247    end
248end
249if ismember(ObjectData.Type,{'line','polyline','polygon','plane_z'})
250    if length(xline)<2
251        theta=0;
252    else
253        theta=angle(diff(xline)+1i*diff(yline));
254        theta(length(xline))=theta(length(xline)-1);
255    end
256    xsup(1)=xline(1)+YMax*sin(theta(1));
257    xinf(1)=xline(1)-YMax*sin(theta(1));
258    ysup(1)=yline(1)-YMax*cos(theta(1));
259    yinf(1)=yline(1)+YMax*cos(theta(1));
260    for ip=2:length(xline)
261        xsup(ip)=xline(ip)+YMax*sin((theta(ip)+theta(ip-1))/2)/cos((theta(ip-1)-theta(ip))/2);
262        xinf(ip)=xline(ip)-YMax*sin((theta(ip)+theta(ip-1))/2)/cos((theta(ip-1)-theta(ip))/2);
263        ysup(ip)=yline(ip)-YMax*cos((theta(ip)+theta(ip-1))/2)/cos((theta(ip-1)-theta(ip))/2);
264        yinf(ip)=yline(ip)+YMax*cos((theta(ip)+theta(ip-1))/2)/cos((theta(ip-1)-theta(ip))/2);
265    end
266end
267
268%% shading image
269if test_patch
270    npMx=512;
271    npMy=512; 
272    flag=zeros(npMy,npMx);
273    if isequal(ObjectData.Type,'ellipse')
274        XimaMin=ObjectData.Coord(1,1)-XMax;
275        XimaMax=ObjectData.Coord(1,1)+XMax;
276        YimaMin=ObjectData.Coord(1,2)-YMax;
277        YimaMax=ObjectData.Coord(1,2)+YMax;
278        xlim=[1.2*XimaMin-0.2*XimaMax 1.2*XimaMax-0.2*XimaMin];%create an image around the ellipse
279        ylim=[1.2*YimaMin-0.2*YimaMax 1.2*YimaMax-0.2*YimaMin];
280        scale_x=2*1.4*XMax/npMx;
281        scale_y=2*1.4*YMax/npMy;
282        xi=(0.5:npMx-0.5)*scale_x+xlim(1);
283        yi=(0.5:npMy-0.5)*scale_y+ylim(1);
284        [Xi,Yi]=meshgrid(xi,yi);
285        X2Max=XMax*XMax;
286        Y2Max=YMax*YMax;
287        distX=(Xi-ObjectData.Coord(1,1));
288        distY=(Yi-ObjectData.Coord(1,2));
289        flag=(distX.*distX/X2Max+distY.*distY/Y2Max)<1;
290    elseif isequal(ObjectData.Type,'rectangle')||isequal(ObjectData.Type,'volume')
291        XimaMin=ObjectData.Coord(1,1)-XMax;
292        XimaMax=ObjectData.Coord(1,1)+XMax;
293        YimaMin=ObjectData.Coord(1,2)-YMax;
294        YimaMax=ObjectData.Coord(1,2)+YMax;
295        xlim=[1.2*XimaMin-0.2*XimaMax 1.2*XimaMax-0.2*XimaMin];%create an image around the ellipse
296        ylim=[1.2*YimaMin-0.2*YimaMax 1.2*YimaMax-0.2*YimaMin];
297        scale_x=2*1.4*XMax/npMx;
298        scale_y=2*1.4*YMax/npMy;
299        xi=(0.5:npMx-0.5)*scale_x+xlim(1);
300        yi=(0.5:npMy-0.5)*scale_y+ylim(1);
301        [Xi,Yi]=meshgrid(xi,yi);
302        distX=abs(Xi-ObjectData.Coord(1,1));
303        distY=abs(Yi-ObjectData.Coord(1,2));
304        flag=distX<XMax & distY< YMax;
305    elseif isequal(ObjectData.Type,'polygon')
306        XimaMin=min(ObjectData.Coord(:,1));
307        XimaMax=max(ObjectData.Coord(:,1));
308        YimaMin=min(ObjectData.Coord(:,2));
309        YimaMax=max(ObjectData.Coord(:,2));
310        xlim=[1.2*XimaMin-0.2*XimaMax 1.2*XimaMax-0.2*XimaMin];
311        ylim=[1.2*YimaMin-0.2*YimaMax 1.2*YimaMax-0.2*YimaMin];
312        [Xlim,Ylim]=meshgrid(linspace(xlim(1),xlim(2),npMx),linspace(ylim(1),ylim(2),npMy));
313        %flag=roipoly(xlim,ylim,flag,ObjectData.Coord(:,1),ObjectData.Coord(:,2));%=1 inside the polygon, 0 outsid
314        flag=inpolygon(Xlim,Ylim,ObjectData.Coord(:,1),ObjectData.Coord(:,2));%=1 inside the polygon, 0 outsid
315    end
316    if isequal(ObjectData.ProjMode,'outside')||isequal(ObjectData.ProjMode,'mask_outside')
317        flag=~flag;
318    end
319    imflag=zeros(npMx,npMy,3);
320    imflag(:,:,3)=flag; % blue color
321    if isequal(col,'m')
322         imflag(:,:,1)=flag; % magenta color
323    end
324    dx=(xlim(2)-xlim(1))/npMx;
325    dy=(ylim(2)-ylim(1))/npMy;
326end
327
328PlotData=[];%default
329
330%% MODIFY AN EXISTING OBJECT PLOT
331if test_newobj==0;
332    hh=hplot;
333    PlotData=get(hplot,'UserData');
334    if test_line
335        set(hplot,'XData',xline)
336        set(hplot,'YData',yline)
337        %modify subobjects
338        if isfield(PlotData,'SubObject')
339            if isequal(ObjectData.Type,'points')
340                if ~isequal(YMax,0)
341                    for ipt=1:min(length(PlotData.SubObject),size(ObjectData.Coord,1))
342                        set(PlotData.SubObject(ipt),'Position',[ObjectData.Coord(ipt,1)-YMax ObjectData.Coord(ipt,2)-YMax 2*YMax 2*YMax])
343                    end
344                    %complement missing points
345                    if length(PlotData.SubObject)>nbpoints% fpoints in excess on the graph
346                        for ii=nbpoints+1: length(PlotData.SubObject);
347                            if ishandle(PlotData.SubObject(ii))
348                                delete(PlotData.SubObject(ii))
349                            end
350                        end
351                    end
352                    %                NbDeformPoint=nbpoints;
353                   
354                    if nbpoints>length(PlotData.SubObject)
355                        for ipt=length(PlotData.SubObject)+1:nbpoints
356                            PlotData.SubObject(ipt)=rectangle('Curvature',[1 1],...
357                                'Position',[ObjectData.Coord(ipt,1)-YMax ObjectData.Coord(ipt,2)-YMax 2*YMax 2*YMax],'EdgeColor',col,...
358                                'LineStyle',SubLineStyle,'Tag','proj_object');
359                        end
360                    end
361                end
362            elseif length(PlotData.SubObject)==2
363                set(PlotData.SubObject(1),'XData',xinf);
364                set(PlotData.SubObject(1),'YData',yinf);
365                set(PlotData.SubObject(2),'XData',xsup);
366                set(PlotData.SubObject(2),'YData',ysup);
367            elseif length(PlotData.SubObject)==1
368                set(PlotData.SubObject(1),'XData',xsup);
369                set(PlotData.SubObject(1),'YData',ysup);
370            end
371        end
372        if isfield(PlotData,'DeformPoint')
373            NbDeformPoint=length(PlotData.DeformPoint);
374            if NbDeformPoint>nbpoints% fpoints in excess on the graph
375                for ii=nbpoints+1:NbDeformPoint;
376                    if ishandle(PlotData.DeformPoint(ii))
377                        delete(PlotData.DeformPoint(ii))
378                    end
379                end
380                NbDeformPoint=nbpoints;
381            end
382            for ipt=1:NbDeformPoint
383                if ishandle(PlotData.DeformPoint(ipt))
384                    if nbpoints>=ipt
385                        set(PlotData.DeformPoint(ipt),'XData',xline(ipt),'YData',yline(ipt));
386                    end
387                end
388            end
389            if nbpoints>length(PlotData.DeformPoint)
390                for ipt=length(PlotData.DeformPoint)+1:nbpoints
391                    PlotData.DeformPoint(ipt)=line(xline(ipt),yline(ipt),'Color',col,'LineStyle','-','Tag','DeformPoint',...
392                        'SelectionHighlight','off','UserData',hplot);
393                end
394                set(hplot,'UserData',PlotData)
395            end
396        end
397    elseif (isequal(ObjectData.Type,'rectangle')||isequal(ObjectData.Type,'ellipse'))&&XMax>0 && YMax>0
398        set(hplot,'Position',[ObjectData.Coord(1,1)-XMax ObjectData.Coord(1,2)-YMax 2*XMax 2*YMax])
399    end
400    if test_patch
401        if isfield(PlotData,'SubObject')
402        for iobj=1:length(PlotData.SubObject)
403            if ~ishandle(PlotData.SubObject(iobj))
404                hold on
405                hhh=image([xlim(1)+dx/2 xlim(2)-dx/2],[ylim(1)+dy/2 ylim(2)-dy/2],imflag,'Tag','proj_object','HitTest','off');
406                set(hhh,'AlphaData',(flag)*0.2)% set partial transparency to the filling color
407                PlotData.SubObject(iobj)=hhh;
408            else
409                objtype=get(PlotData.SubObject(iobj),'Type');
410                if isequal(objtype,'image')
411                    set(PlotData.SubObject(iobj),'CData',imflag,'AlphaData',(flag)*0.2)
412                    set(PlotData.SubObject(iobj),'XData',[xlim(1)+dx/2 xlim(2)-dx/2])
413                    set(PlotData.SubObject(iobj),'YData',[ylim(1)+dy/2 ylim(2)-dy/2])
414                end
415            end
416        end
417        end
418    else% no patch image requested, erase existing ones
419        if isfield(PlotData,'SubObject')
420            for iobj=1:length(PlotData.SubObject)
421                if ishandle(PlotData.SubObject(iobj)) && strcmp(get(PlotData.SubObject(iobj),'Type'),'image')
422                    delete(PlotData.SubObject(iobj))
423                end
424            end
425        end
426    end
427end
428
429%% create the object
430if test_newobj
431%     axes(haxes)
432    hother=findobj('Tag','proj_object');%find all the proj objects
433    for iobj=1:length(hother)
434        if strcmp(get(hother(iobj),'Type'),'rectangle')|| strcmp(get(hother(iobj),'Type'),'patch')
435            set(hother(iobj),'EdgeColor','b')
436            if isequal(get(hother(iobj),'FaceColor'),'m')
437                set(hother(iobj),'FaceColor','b')
438            end
439        elseif isequal(get(hother(iobj),'Type'),'image')
440               Acolor=get(hother(iobj),'CData');
441               Acolor(:,:,1)=zeros(size(Acolor,1),size(Acolor,2));
442               set(hother(iobj),'CData',Acolor);
443        else
444             set(hother(iobj),'Color','b')
445        end
446        set(hother(iobj),'Selected','off')
447    end
448    hother=findobj('Tag','DeformPoint');
449    set(hother,'Color','b');
450    set(hother,'Selected','off') 
451    switch ObjectData.Type
452        case 'points'
453            hh=line(ObjectData.Coord(:,1),ObjectData.Coord(:,2),'Color',col,'LineStyle','none','Marker','+');
454            for ipt=1:length(xline)
455                PlotData.DeformPoint(ipt)=line(ObjectData.Coord(ipt,1),ObjectData.Coord(ipt,2),'Color',...
456                    col,'LineStyle','none','SelectionHighlight','off','UserData',hh,'Tag','DeformPoint');
457                %create circle around each point
458                if ~isequal(YMax,0)
459                    PlotData.SubObject(ipt)=rectangle('Curvature',[1 1],...
460                        'Position',[ObjectData.Coord(ipt,1)-YMax ObjectData.Coord(ipt,2)-YMax 2*YMax 2*YMax],'EdgeColor',col,...
461                        'LineStyle',SubLineStyle,'Tag','proj_object');
462                end
463            end
464        case {'line','polyline','polygon','plane_z'}
465            hh=line(xline,yline,'Color',col);
466                PlotData.SubObject(1)=line(xinf,yinf,'Color',col,'LineStyle',SubLineStyle,'Tag','proj_object');%draw sub-lines
467                PlotData.SubObject(2)=line(xsup,ysup,'Color',col,'LineStyle',SubLineStyle,'Tag','proj_object');
468                for ipt=1:sizcoord(1)
469                    PlotData.DeformPoint(ipt)=line(ObjectData.Coord(ipt,1),ObjectData.Coord(ipt,2),'Color',...
470                        col,'LineStyle','none','Marker','.','Tag','DeformPoint','SelectionHighlight','off','UserData',hh);
471                end
472        case {'plane','volume'}
473            hh=line(xline,yline,'Color',col);
474            PlotData.SubObject(1)=line(xsup,ysup,'Color',col,'LineStyle',SubLineStyle,'Tag','proj_object');
475        case 'rectangle'
476            hh=rectangle('Position',[ObjectData.Coord(1,1)-XMax ObjectData.Coord(1,2)-YMax 2*XMax 2*YMax],'LineWidth',2,'EdgeColor',col);
477        case 'ellipse'
478            hh=rectangle('Curvature',[1 1],'Position',[ObjectData.Coord(1,1)-XMax ObjectData.Coord(1,2)-YMax 2*XMax 2*YMax],'EdgeColor',col,'LineWidth',2);
479        otherwise
480            msgbox_uvmat('ERROR','unknown ObjectData.Type in plot_object.m')
481            return
482    end
483    set(hh,'Tag','proj_object')
484     if test_patch
485         hold on
486        hhh=image([xlim(1)+dx/2 xlim(2)-dx/2],[ylim(1)+dy/2 ylim(2)-dy/2],imflag,'Tag','proj_object','HitTest','off');
487       set(hhh,'AlphaData',(flag)*0.2)% set partial transparency to the filling color
488         PlotData.SubObject=hhh;   
489     end
490    if isfield(PlotData,'SubObject')
491        set(PlotData.SubObject,'UserData',hh)%record the parent handles in the SubObjects
492    end
493    if isfield(PlotData,'DeformPoint')
494        for ipt=1:sizcoord(1)
495            set(PlotData.DeformPoint(ipt),'UserData',hh);%record the parent handles in the SubObjects
496        end
497        set(PlotData.DeformPoint,'UserData',hh)%record the parent handles in the SubObjects
498    end
499end
500set(hh,'UserData',PlotData)
Note: See TracBrowser for help on using the repository browser.