Changeset 2830


Ignore:
Timestamp:
01/14/10 11:05:43 (15 years ago)
Author:
Mathieu Morlighem
Message:

minor

Location:
issm/trunk/src/m/classes/public/plot
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/m/classes/public/plot/plot_manager.m

    r2829 r2830  
    4949                        return;
    5050                case 'mesh',
    51                         plot_mesh(md,options,subplotwidth,i);
     51                        plot_mesh(md,options,nlines,ncols,i);
    5252                        return;
    5353                case 'penalties',
  • issm/trunk/src/m/classes/public/plot/plot_overlay.m

    r2829 r2830  
    9494
    9595%Select plot area
    96 subplot(plotlines,plotcols,i);
     96%subplot(plotlines,plotcols,i);
     97%P=get(gca,'pos');
     98%P(3)=P(3)+0.05;
     99%set(gca,'pos',P);
    97100
    98101%Plot:
  • issm/trunk/src/m/classes/public/plot/scaleruler.m

    r844 r2830  
    2727%Text
    2828xt=Bu(1);
    29 yt=Bu(2)+widthscale;
     29yt=Bu(2)+2*widthscale;
    3030text(xt,yt,num2str(Tick),'FontSize',13,'FontWeight','b');
    3131
     
    5050        %Text
    5151        xt=Bu(1);
    52         yt=Bu(2)+widthscale;
     52        yt=Bu(2)+2*widthscale;
    5353        if i~=numberofticks-1,
    5454                text(xt,yt,num2str(round_ice(Tick/1000,3)),'FontSize',13,'FontWeight','b');
Note: See TracChangeset for help on using the changeset viewer.