Trouble triangulating a surface
Ältere Kommentare anzeigen
I have attached a text file with the data I am discussing.
I need to triangulate this data so that I can write the triangulation to an stl file using stlwrite (from the file exchange). The problem is that this sequence produces triangles that are NOT in the plane for seemingly no reason. As can be seen, all of the points are in a circle. How can I triangulate this surface without the wierd out of plane triangles appearing??
>> D = importdata('Endcap.txt');
>> TRI = delaunay(D(:,1),D(:,2),D(:,3));
>> trisurf(TRI,D(:,1),D(:,2),D(:,3))
>> hold on
>> plot3(D(:,1),D(:,2),D(:,3),'*r')

Note that I expected something like this:
>> surf([D(:,1),repmat(mean(D(:,1)),length(D),1)],[D(:,2),repmat(mean(D(:,2)),length(D),1)],[D(:,3),repmat(mean(D(:,3)),length(D),1)])
3 Kommentare
darova
am 5 Dez. 2019
try alphaShape for triangulating
David Winthrop
am 5 Dez. 2019
Bearbeitet: David Winthrop
am 5 Dez. 2019
darova
am 5 Dez. 2019
Antworten (0)
Kategorien
Mehr zu Delaunay Triangulation finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!