フィルターのクリア

Circum center of a triangle in Delaunay triangulation

2 ビュー (過去 30 日間)
aasha verghese
aasha verghese 2022 年 6 月 29 日
回答済み: aasha verghese 2022 年 6 月 30 日
Hi,
trid= edgeAttachments(DT,e(2,1),e(2,2));
Here edge is 2nd edge in the triangulation.
For a specific edge how to identify the circum center of the triangle attached to it? If multiple triangles attached to this edge, circum center of the first one among those triangles is needed.
Thanks!

採用された回答

aasha verghese
aasha verghese 2022 年 6 月 30 日
Found answer as,
trid= edgeAttachments(DT,e(i,1),e(i,2));
t=trid{1}(1);
con=DT.ConnectivityList(t);
cirCentr =circumcenter(DT,con);
disp('circum center is...');
disp(cirCentr);

その他の回答 (0 件)

カテゴリ

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

製品

Community Treasure Hunt

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

Start Hunting!

Translated by