[13975] | 1 | function [A,numprofiles,numpoints,closed]=closeprofile(A,numprofiles,numpoints,closed,prevplot,root,options)
|
---|
[1] | 2 | %CLOSEPROFILE - close one or several profile
|
---|
| 3 | %
|
---|
[8662] | 4 | % this script is used by exptool as an elementary operation
|
---|
[1] | 5 | % on an ARGUS profile
|
---|
| 6 | %
|
---|
| 7 | % Usage:
|
---|
[3018] | 8 | % [A,numprofiles,numpoints,closed]=closeprofile(A,numprofiles,numpoints,closed,prevplot,root,options)
|
---|
[1] | 9 |
|
---|
| 10 | %some checks
|
---|
| 11 | if numprofiles==0
|
---|
| 12 | disp('no profile to be closed')
|
---|
| 13 | return
|
---|
| 14 | end
|
---|
[13975] | 15 |
|
---|
[1] | 16 | title('click on the profiles to be closed, RETURN to exit','FontSize',14)
|
---|
| 17 | hold on
|
---|
| 18 |
|
---|
| 19 | loop=1;
|
---|
| 20 | selection=[];
|
---|
| 21 |
|
---|
| 22 | while loop
|
---|
| 23 |
|
---|
[33] | 24 | %some checks,
|
---|
| 25 | if numprofiles==0
|
---|
| 26 | disp('no profile present, exiting...')
|
---|
| 27 | return
|
---|
| 28 | end
|
---|
| 29 | if ~any(~closed),
|
---|
| 30 | disp('All the profiles are closed, exiting...')
|
---|
| 31 | return
|
---|
| 32 | end
|
---|
| 33 |
|
---|
[1] | 34 | [xi,yi] = ginput(1);
|
---|
[13975] | 35 |
|
---|
[1] | 36 | if ~isempty(xi)
|
---|
| 37 |
|
---|
| 38 | %get closest profile
|
---|
| 39 | [profsel indsel]=closestpoint(A,numprofiles,xi,yi);
|
---|
| 40 |
|
---|
| 41 | if ismember(profsel,selection)
|
---|
[33] | 42 | %profile was in selection, remove it from the selection
|
---|
[1] | 43 | selection(find(selection==profsel))=[];
|
---|
[3018] | 44 | %back to regular color
|
---|
| 45 | plot(A(profsel).x,A(profsel).y,...
|
---|
[5088] | 46 | 'color',getfieldvalue(options,'color'),'LineStyle',getfieldvalue(options,'LineStyle'),'LineWidth',getfieldvalue(options,'LineWidth'));
|
---|
[33] | 47 | elseif closed(profsel),
|
---|
| 48 | %profile already closed, do nothing
|
---|
| 49 | disp('selected profile aready closed, make another selection'),
|
---|
[1] | 50 | else
|
---|
| 51 | %add the profile to the list to be closed
|
---|
| 52 | selection(end+1)=profsel;
|
---|
[3018] | 53 | %in selectioncolor
|
---|
| 54 | plot(A(profsel).x,A(profsel).y,...
|
---|
[5088] | 55 | 'color',getfieldvalue(options,'selectioncolor'),'LineStyle',getfieldvalue(options,'LineStyle'),'LineWidth',getfieldvalue(options,'LineWidth'));
|
---|
[1] | 56 | end
|
---|
| 57 | else
|
---|
| 58 | %close the profiles
|
---|
| 59 | for i=1:length(selection),
|
---|
[33] | 60 | A(selection(i)).x(end+1)=A(selection(i)).x(1);
|
---|
| 61 | A(selection(i)).y(end+1)=A(selection(i)).y(1);
|
---|
| 62 | numpoints=numpoints+1;
|
---|
| 63 | closed(selection(i))=1;
|
---|
[1] | 64 | end
|
---|
| 65 | loop=0;
|
---|
| 66 | end
|
---|
| 67 | end
|
---|
| 68 | end
|
---|