How do i modify CGAL surface mesh vertex index coordinates? For now i've been trying to change coordinates of vertices like this:
for (auto vertex_iterator : mesh.vertices()) {
Point_3 p(1,0,1);
mesh.point(vertex_iterator) = p;
}
Code above is just a sample, i'm not assigning same coordinates to all vertices.
After i try to do caluclations with it i get undefined results.