How to make Triangle to Triangle Intersection Algorithm ??

I see Ray-Triangle Intersection Source Code But I want Triangle-Triangle Intersection Code
I cant make that... Please help or Code Supplement

2 件のコメント

KSSV
KSSV 2021 年 11 月 16 日
Your question is not clear. Any pictorial example? More information needed.
토즈 토즈
토즈 토즈 2021 年 11 月 17 日
Like this One. But This is Three time Ray Intersect in Ray-Triangle Intersection Algorithm
I want Triangle-Triangle intersection Algorithm and, I want know Ray-Triangle n Triangle-Triangle Algorithm have a difference?

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

回答 (2 件)

Matt J
Matt J 2021 年 11 月 16 日
編集済み: Matt J 2021 年 11 月 16 日

0 投票

triangle1=polyshape([0 0 ; 1 0; 0 1]);
triangle2=polyshape([0 0 ; 1 0; 1 1]);
p=intersect([triangle1,triangle2]);
tiledlayout(1,2)
nexttile; plot([triangle1,triangle2],'FaceColor','r'); ylim([-0.2,1.2]);
nexttile; plot(p,'FaceColor','r'); ylim([-0.2,1.2]);

1 件のコメント

토즈 토즈
토즈 토즈 2021 年 11 月 17 日
Really thx But I want Intersection in 3D space Can U one more help for me??

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

Matt J
Matt J 2021 年 11 月 17 日

0 投票

But I want Intersection in 3D space Can U one more help for me??
You can use intersectionHull() in this File Exchange submission:

カテゴリ

ヘルプ センター および File ExchangeResizing and Reshaping Matrices についてさらに検索

製品

リリース

R2021b

質問済み:

2021 年 11 月 16 日

回答済み:

2021 年 11 月 17 日

Community Treasure Hunt

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

Start Hunting!

Translated by