我正在编写代码,我使用MATLAB的fill
命令绘制2D形状。我可以指定形状的填充颜色。但是,边框线颜色始终为黑色。我希望边框线颜色与填充颜色相同。我怎样才能指定边框线颜色?
答案 0 :(得分:9)
请参阅this thread:
To set the edgecolor to white do the following.
h = fill([-1 -1 1 1],[-1 1 1 -1],'w');
axis([-2 2 -2 2]);
set(h,'edgecolor','white');
应该照顾边界。
答案 1 :(得分:8)
除了schnaader's answer之外,您还可以在初始调用FILL中设置边缘颜色:
hPatch = fill(xData,yData,'r','EdgeColor','r'); %# Red patch with red edges
或者完全停止绘制边缘:
hPatch = fill(xData,yData,'r','EdgeColor','none'); %# Red patch with no edges