Triangulations
To represent 2-D or 3-D triangulation data in MATLAB®:
For a general triangulation, create a
triangulationobject.For a Delaunay triangulation, create a
delaunayTriangulationobject. A Delaunay triangulation is a type of triangulation that reduces the number of narrow triangles and does not depend on vertex ordering.
You can compute geometric quantities for both types of triangulations using their object functions.
You can also visualize the triangulations and work with STL files to store triangulation data.
Objects
triangulation | Triangulation in 2-D or 3-D |
delaunayTriangulation | Delaunay triangulation in 2-D and 3-D |
Functions
Topics
General Triangulation
- Triangulations
Learn about general triangulations and their representation in MATLAB.
Delaunay Triangulation
- Delaunay Triangulations
Learn about Delaunay triangulations and their representation in MATLAB.
Applications of Delaunay Triangulation
- Curve Reconstruction from Point Cloud
Reconstruct a polygonal boundary from a cloud of points by using a Delaunay triangulation. - Compute Approximate Medial Axis of Polygonal Domain
Create an approximate Medial Axis of a polygonal domain using a constrained Delaunay triangulation. - Morph 2-D Mesh to Modified Boundary
Morph a mesh of a 2-D domain to accommodate a modification to the domain boundary. - Insert or Remove Points in Delaunay Triangulation
Insert or remove points in Delaunay triangulation by using index-based subscripting.