<< mesh2_get_connectivity CG-lab mesh2_refine >>

CG-lab >> CG-lab > mesh2_get_coord

mesh2_get_coord

Get coordinates of vertices of the mesh

Calling Sequence

coord = mesh2_get_coord(ptr)

Parameters

coord
: is (nbvertices,2) array defininig (x,y) coordinates of vertices of the mesh.
ptr
: is a pointer representing mesh2.

Examples

C=[1 1 5 1; 5 1 7 3; 7 3 4 4; 4 4 3 6; 3 6 1 5; 1 5 1 1;...
5 2 5 3; 5 3 3 4; 3 4 2 2; 2 2 5 2];

[coord,tri,ptr]= mesh_2(C);
mesh2_set_seeds(ptr,3.5,2.5);
tri = mesh2_get_connectivity(ptr);
coord = mesh2_get_coord(ptr);
clf();
[nbtri,nb] = size(tri);
tri = [tri tri(:,1)];
x=coord(:,1)';
y=coord(:,2)';
for k = 1:nbtri
plot2d(x(tri(k,:)),y(tri(k,:)),style = 2);
end
mesh2_delete(ptr,"ptr");

See Also

This function uses the Mesh_2 package of CGAL, which is under QPL license. See License Terms

Authors

<< mesh2_get_connectivity CG-lab mesh2_refine >>