Effacer les filtres
Effacer les filtres

Circum center of a triangle in Delaunay triangulation

2 vues (au cours des 30 derniers jours)
aasha verghese
aasha verghese le 29 Juin 2022
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!

Réponse acceptée

aasha verghese
aasha verghese le 30 Juin 2022
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);

Plus de réponses (0)

Catégories

En savoir plus sur Delaunay Triangulation dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by