Changeset 22888


Ignore:
Timestamp:
07/02/18 10:30:41 (7 years ago)
Author:
Eric.Larour
Message:

CHG: added text3d.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/branches/trunk-larour-NatGeoScience2016/src/m/plot/applyoptions.m

    r22622 r22888  
    294294        textposition=getfieldvalue(options,'textposition');
    295295        textrotation=getfieldvalue(options,'textrotation');
     296        text3d=getfieldvalue(options,'text3d',0);
    296297        for i=1:length(getfieldvalue(options,'text'));
    297298                textstringi=textstring{i};
     
    301302                textpositioni=textposition{i};
    302303                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
    304309                if strcmpi(getfieldvalue(options,'textclip','on'),'on'),
    305310                        set(h,'Clipping','on'); %prevent text from appearing outside of the box
Note: See TracChangeset for help on using the changeset viewer.