Changeset 6951


Ignore:
Timestamp:
01/05/11 13:55:32 (14 years ago)
Author:
Mathieu Morlighem
Message:

Now defaults are: hardcopy 'off' plotbackgroundcolor 'w'

Location:
issm/trunk/src/m/model
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/m/model/plot/applyoptions.m

    r6938 r6951  
    369369
    370370%backgroundcolor
    371 set(gca,'color',getfieldvalue(options,'backgroundcolor','w'));
     371set(gca,'color',getfieldvalue(options,'backgroundcolor','none'));
    372372
    373373%figurebackgrounbcolor
    374 set(gcf,'color',getfieldvalue(options,'figurebackgroundcolor','none'));
     374set(gcf,'color',getfieldvalue(options,'figurebackgroundcolor','w'));
  • issm/trunk/src/m/model/printmodel.m

    r3222 r6951  
    1515%   framecolor: color of frame around final image (default 'black')
    1616%   trim: trim empty space around image (default 'off')
    17 %   hardcopy: 'off' to impose MATLAB to use the same colors (default 'on')
     17%   hardcopy: 'off' to impose MATLAB to use the same colors (default 'off')
    1818%   
    1919%   Usage:
     
    3535options=addfielddefault(options,'marginsize',5);
    3636options=addfielddefault(options,'frame','on');
    37 options=addfielddefault(options,'framesize',5);
     37options=addfielddefault(options,'framesize',2);
    3838options=addfielddefault(options,'framecolor','black');
    3939options=addfielddefault(options,'trim','on');
    40 options=addfielddefault(options,'hardcopy','on');
     40options=addfielddefault(options,'hardcopy','off');
    4141
    4242%get fig:
Note: See TracChangeset for help on using the changeset viewer.