Painters renderer results in jagged edges

3 visualizzazioni (ultimi 30 giorni)
I am trying to generate a vector graphics file from a surface plot.
[X,Y] = meshgrid(-1.5:0.1:1.5,-1.5:0.1:1.5);
Z = (abs(X).*(abs(X) > abs(Y)) + abs(Y).*(abs(X) <= abs(Y))).*...
((abs(X) < 1) & (abs(Y) < 1)) + 1.*((abs(X)>=1) | (abs(Y)>=1)) + ...
max(2*X-2,0)-min(2*X+2,0)+max(2*Y-2,0)-min(2*Y+2,0);
fig=figure;
surf(X,Y,Z);
view(gca,[-65 10]);
This results is the plot that I want.
If I switch to Painters in order to save the figure as a vector graphics file, I get jagged edges:
fig.Renderer='Painters';
Any ideas how I can fix this?

Risposta accettata

J. Alex Lee
J. Alex Lee il 29 Gen 2020
What happens if you set "FaceColor" to "interp" (default is "flat") on the surf object? It fixes the jagge edge for me (2017a or b on mac)
[X,Y] = meshgrid(-1.5:0.1:1.5,-1.5:0.1:1.5);
Z = (abs(X).*(abs(X) > abs(Y)) + abs(Y).*(abs(X) <= abs(Y))).*...
((abs(X) < 1) & (abs(Y) < 1)) + 1.*((abs(X)>=1) | (abs(Y)>=1)) + ...
max(2*X-2,0)-min(2*X+2,0)+max(2*Y-2,0)-min(2*Y+2,0);
fig=figure;
s = surf(X,Y,Z);
view(gca,[-65 10]);
s.FaceColor = 'interp'

Più risposte (0)

Categorie

Scopri di più su Functions in Help Center e File Exchange

Prodotti


Release

R2019b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by