salam i have a delaunay triangulation from 30,000 points (x,y) using DelaunayTriangulation in MATLAB,now i have to add 100 more points(x,y) stored in h(i,j), Using these lines of code
for i=1:100
tri.Points(end+1,:)=h(i,:)
end
i have tried to figure out but i am not sure that the algorithm that runs behind the DelaunayTriangulation command in MATLAB inserts the new points by first removing the old connections and ensures that after addition of the new points the triangulation remains delaunay or i have to write the code my self for this