how to solve polygon subtract problem?

7 ビュー (過去 30 日間)
Sierra
Sierra 2022 年 10 月 17 日
編集済み: Matt J 2022 年 10 月 17 日
I subtracted green circle from blue circle. and it returned second polygog like a moon.
but what i want to plot is thrid polygon.
how to subtract polygon liks this?
Thanks

採用された回答

Matt J
Matt J 2022 年 10 月 17 日
編集済み: Matt J 2022 年 10 月 17 日
but what i want to plot is thrid polygon.
Plot the original polygon overlaid on top of the crescent (moon), but make the original polygon transparent.
p1=nsidedpoly(1000);
p2=nsidedpoly(1000,'Center',[1,0]);
p3=subtract(p1,p2);
plot(p3); hold on
plot(p1,'FaceAlpha',0)

その他の回答 (1 件)

Matt J
Matt J 2022 年 10 月 17 日
編集済み: Matt J 2022 年 10 月 17 日
Express the 2 regions as a polyshape vector:
p1=nsidedpoly(1000);
p2=nsidedpoly(1000,'Center',[1,0]);
p3=subtract(p1,p2);
p4=intersect(p1,p2);
pFinal=[p3,p4];
h=plot(pFinal);
h(2).FaceColor='none';

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by