필터 지우기
필터 지우기

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 CenterFile Exchange에서 Delaunay Triangulation에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by