5

我正在编写代码,在其中我使用 MATLAB 的fill命令来绘制 2D 形状。我可以指定形状的填充颜色。但是,边界线颜色始终为黑色。我希望边框线颜色与填充颜色相同。我怎样才能指定边框线颜色?

4

2 回答 2

9

看到这个线程

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');

那应该照顾边界。

于 2010-09-25T21:30:12.163 回答
8

除了schnaader 的 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
于 2010-09-26T03:45:07.453 回答