Changeset 22888
- Timestamp:
- 07/02/18 10:30:41 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/branches/trunk-larour-NatGeoScience2016/src/m/plot/applyoptions.m
r22622 r22888 294 294 textposition=getfieldvalue(options,'textposition'); 295 295 textrotation=getfieldvalue(options,'textrotation'); 296 text3d=getfieldvalue(options,'text3d',0); 296 297 for i=1:length(getfieldvalue(options,'text')); 297 298 textstringi=textstring{i}; … … 301 302 textpositioni=textposition{i}; 302 303 textrotationi=textrotation{i}; 303 h=text(textpositioni(1),textpositioni(2),10,textstringi,'FontSize',textsizei,'FontWeight',textweighti,'Color',textcolori,'Rotation',textrotationi); 304 if ~text3d, 305 h=text(textpositioni(1),textpositioni(2),textstringi,'FontSize',textsizei,'FontWeight',textweighti,'Color',textcolori,'Rotation',textrotationi); 306 else 307 h=text(textpositioni(1),textpositioni(2),textpositioni(3),textstringi,'FontSize',textsizei,'FontWeight',textweighti,'Color',textcolori,'Rotation',textrotationi); 308 end 304 309 if strcmpi(getfieldvalue(options,'textclip','on'),'on'), 305 310 set(h,'Clipping','on'); %prevent text from appearing outside of the box
Note:
See TracChangeset
for help on using the changeset viewer.