Drawing a rectangle with special specifications

1 回表示 (過去 30 日間)
Stephen
Stephen 2014 年 5 月 16 日
コメント済み: Henric Rydén 2014 年 5 月 19 日
how can i draw a 172*172 that first edge is black (intensity=0) and second edge 10% brighter and the third edge 10% brighter than second and the last edge 10% brighter than third edge...
thank you for your answers

回答 (1 件)

Henric Rydén
Henric Rydén 2014 年 5 月 16 日
編集済み: Henric Rydén 2014 年 5 月 16 日
figure;
axes('XLim', [-50 200],'YLim', [-50 200]);
line([0 172],[172 172],'LineWidth',5,'Color',[0 0 0])
line([172 172],[172 0],'LineWidth',5,'Color',[.1 .1 .1])
line([172 0],[0 0],'LineWidth',5,'Color',[.2 .2 .2])
line([0 0],[0 172],'LineWidth',5,'Color',[.3 .3 .3])
  3 件のコメント
Star Strider
Star Strider 2014 年 5 月 16 日
To compensate for line thickness, change it to:
figure;
axes('XLim', [-50 200],'YLim', [-50 200]);
line([-2 174],[172 172],'LineWidth',5,'Color',[0 0 0])
line([172 172],[174 -2],'LineWidth',5,'Color',[.1 .1 .1])
line([174 -2],[0 0],'LineWidth',5,'Color',[.2 .2 .2])
line([0 0],[-2 174],'LineWidth',5,'Color',[.3 .3 .3])
Henric Rydén
Henric Rydén 2014 年 5 月 19 日
If you need nicer corners you should use patch instead of line. The syntax is similar, but you give coordinates of faces and vertices. You can also set transparency of patch objects.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangePolygons についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by