Last change
on this file since 21315 was 21315, checked in by Mathieu Morlighem, 9 years ago |
CHG: new version of export_fig with a patch
|
File size:
533 bytes
|
Rev | Line | |
---|
[21315] | 1 | Downloaded from https://www.mathworks.com/matlabcentral/fileexchange/23629-export-fig
|
---|
| 2 |
|
---|
| 3 | We 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 |
|
---|
| 5 | Line 585:
|
---|
| 6 |
|
---|
| 7 |
|
---|
| 8 | if ~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
|
---|
| 15 | end
|
---|
| 16 |
|
---|
| 17 | change to painters all the time
|
---|
Note:
See
TracBrowser
for help on using the repository browser.