Filter löschen
Filter löschen

Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

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

1 Ansicht (letzte 30 Tage)
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

Antworten (0)

Diese Frage ist geschlossen.

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by