Create a constraints matrix for triangulation
Show older comments
Hi everybody,
I would like to create a 2D triangulation with a lot of free borders. I think that the easiest way to do that is to use the DelaunayTri function.
I believe that the way to create free border is to use a constraint function and the inOutstatus of the triangulation :
dt0=DelaunayTri(x0,C);
inside0 = dt0.inOutStatus();
tr0 = TriRep(dt0(inside0, :), dt0.X);
But I don't know how to create the Constraint matrix !
I have a n*n matrix of the edges I would like to use. How can I convert this matrix in a constraint matrix?
I hope you understand my problem and hopefully you will help me ! Thanks
Answers (0)
Categories
Find more on Surface and Mesh Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!