How to draw a surface plot without black edges in MATLAB?

后端 未结 4 547
日久生厌
日久生厌 2020-12-25 11:10

The black lines are awful, how can I get rid of them? I want only the colored surfaces.

4条回答
  •  悲&欢浪女
    2020-12-25 11:54

    Another choice is to set the edgeColor and/or lineStyle properties of the surface handle object to none.

    >> hSurf = surf(X,Y,Z,'EdgeColor','none','LineStyle','none','FaceLighting','phong');
    

提交回复
热议问题