source: issm/trunk-jpl/externalpackages/export_fig/README@ 21315

Last change on this file since 21315 was 21315, checked in by Mathieu Morlighem, 8 years ago

CHG: new version of export_fig with a patch

File size: 533 bytes
Line 
1Downloaded from https://www.mathworks.com/matlabcentral/fileexchange/23629-export-fig
2
3We had to patch export_fig.m to force export_fig to use the renderers painter, otherwise it is just way to slow (opengl is the default if we have patches)
4
5Line 585:
6
7
8if ~options.renderer
9 if hasTransparency || hasPatches
10 % This is *MUCH* slower, but more accurate for patches and transparent annotations (issue #39)
11 renderer = '-opengl';
12 else
13 renderer = '-painters';
14 end
15end
16
17change to painters all the time
Note: See TracBrowser for help on using the repository browser.