Info

この質問は閉じられています。 編集または回答するには再度開いてください。

how do i write condition for polyshape oobject overlap by 2 other polyshape object!!!! (poly3 overlaped by poly1 and poly2)

1 回表示 (過去 30 日間)
Prakash Choudhary
Prakash Choudhary 2019 年 6 月 18 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
clc
close all
clear variables
poly1 = polyshape([2200 0 0 2200],[130 82 -82 -130]);
poly2 = polyshape([3200 1000 1000 3200],[130 82 -82 -130]);
poly3 = polyshape([4200 2000 2000 4200],[130 82 -82 -130]);
plot(poly1)
hold on
plot(poly2)
plot(poly3)
if overlaps(poly1,poly2)
disp('Yes')
else disp('No')
end
if overlaps((poly1,poly2),poly3)
disp('Yes1')
else disp('No1')
end

回答 (0 件)

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by