考虑由顶点(0,0),(0,10),(1,10)和(1,0)形成的矩形。如何在MATLAB中将其变为红色?
注意。由于某种原因,所提到的阴影here都不起作用。
答案 0 :(得分:2)
您可以使用patch
:
vertices = [0 0; 0 10; 1 10; 1 0];
patch(vertices(1:end,1), vertices(1:end,2), [1 .2 .2], 'edgecolor', [0 0 0]);
%// [1 .2 .2] is light red for the fill; [1 1 1] is black for the edge
axis([-1 2 -10 20]); %// set axis limits to properly see rectangle