Changeset 24302
- Timestamp:
- 10/30/19 15:24:17 (5 years ago)
- Location:
- issm/trunk-jpl/src/m/exp
- Files:
-
- 2 added
- 15 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/exp/clicktoflowline.m
r22876 r24302 12 12 13 13 %Get click position 14 [x0,y0]= ginput(1);14 [x0,y0]=exp_ginput(1,options); 15 15 16 16 %Get flowline -
issm/trunk-jpl/src/m/exp/exptool.m
r23185 r24302 99 99 100 100 %get current figure 101 nofigurecopy=getfieldvalue(options,'nofigurecopy', 0);101 nofigurecopy=getfieldvalue(options,'nofigurecopy',1); 102 102 if ~nofigurecopy, 103 103 if ~isempty(get(0,'children')),%if there is already a figure (return the number of opened figures) -
issm/trunk-jpl/src/m/exp/operation/addcontour.m
r13730 r24302 17 17 while loop 18 18 19 [xi,yi] = ginput(1);19 [xi,yi] = exp_ginput(1,options); 20 20 21 21 if ~isempty(xi) -
issm/trunk-jpl/src/m/exp/operation/addendprofile.m
r13730 r24302 23 23 title('click on a profile, RETURN to exit','FontSize',14) 24 24 while isclosed 25 [xi,yi] = ginput(1);25 [xi,yi] = exp_ginput(1,options); 26 26 if ~isempty(xi) 27 27 %get the closest point … … 57 57 %first step, select a profile 58 58 title('click to add point to the selected profile, RETURN to exit','FontSize',14) 59 [xi,yi] = ginput(1);59 [xi,yi] = exp_ginput(1,options); 60 60 61 61 if ~isempty(xi) -
issm/trunk-jpl/src/m/exp/operation/addinsideprofile.m
r13730 r24302 30 30 %first step, select a segment 31 31 title('click on a segment, RETURN to exit','FontSize',14) 32 [xi,yi] = ginput(1);32 [xi,yi] = exp_ginput(1,options); 33 33 34 34 %first click … … 51 51 %next click 52 52 title('click on the new point''s location, RETURN to exit','FontSize',14) 53 [xi,yi,but] = ginput(1);53 [xi,yi,but] = exp_ginput(1,options); 54 54 55 55 %second click -
issm/trunk-jpl/src/m/exp/operation/addprofile.m
r13730 r24302 17 17 while loop 18 18 19 [xi,yi] = ginput(1);19 [xi,yi] = exp_ginput(1,options); 20 20 21 21 if ~isempty(xi) -
issm/trunk-jpl/src/m/exp/operation/closeprofile.m
r13730 r24302 32 32 end 33 33 34 [xi,yi] = ginput(1);34 [xi,yi] = exp_ginput(1,options); 35 35 36 36 if ~isempty(xi) -
issm/trunk-jpl/src/m/exp/operation/cutarea.m
r13730 r24302 44 44 end 45 45 46 [xi,yi] = ginput(1);46 [xi,yi] = exp_ginput(1,options); 47 47 48 48 if ~isempty(xi) -
issm/trunk-jpl/src/m/exp/operation/cutprofile.m
r13730 r24302 30 30 %select a segment 31 31 title('click the segment to cut, RETURN to exit','FontSize',14) 32 [xi,yi] = ginput(1);32 [xi,yi] = exp_ginput(1,options); 33 33 34 34 if ~isempty(xi) -
issm/trunk-jpl/src/m/exp/operation/mergeprofiles.m
r13730 r24302 54 54 end 55 55 56 [xi,yi] = ginput(1);56 [xi,yi] = exp_ginput(1,options); 57 57 58 58 if ~isempty(xi) -
issm/trunk-jpl/src/m/exp/operation/modifyposition.m
r13730 r24302 27 27 %select a point to be modified 28 28 title('click on the point to be modified, RETURN to exit','FontSize',14) 29 [xi,yi] = ginput(1);29 [xi,yi] = exp_ginput(1,options); 30 30 31 31 if ~isempty(xi) … … 41 41 %select new location 42 42 title('click on the new location, RETURN to exit','FontSize',14) 43 [xi,yi] = ginput(1);43 [xi,yi] = exp_ginput(1,options); 44 44 45 45 if ~isempty(xi) -
issm/trunk-jpl/src/m/exp/operation/orientprofile.m
r13730 r24302 22 22 end 23 23 24 [xi,yi] = ginput(1);24 [xi,yi] = exp_ginput(1,options); 25 25 26 26 if ~isempty(xi) -
issm/trunk-jpl/src/m/exp/operation/removepoints.m
r13730 r24302 34 34 %select a point to be deleted 35 35 title('click on the point to be removed, RETURN to exit','FontSize',14) 36 [xi,yi] = ginput(1);36 [xi,yi] = exp_ginput(1,options); 37 37 38 38 if ~isempty(xi) -
issm/trunk-jpl/src/m/exp/operation/removeprofile.m
r13730 r24302 22 22 end 23 23 24 [xi,yi] = ginput(1);24 [xi,yi] = exp_ginput(1,options); 25 25 26 26 if ~isempty(xi) -
issm/trunk-jpl/src/m/exp/operation/removeseveralpoints.m
r13730 r24302 46 46 end 47 47 48 [xi,yi] = ginput(1);48 [xi,yi] = exp_ginput(1,options); 49 49 50 50 if ~isempty(xi)
Note:
See TracChangeset
for help on using the changeset viewer.