Painters renderer results in jagged edges

3 次查看(过去 30 天)
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?

采纳的回答

J. Alex Lee
J. Alex Lee 2020-1-29
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'

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Functions 的更多信息

标签

产品


版本

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by