I want to use CGAL::Surface-mesh-parameterization
to process a sphere Triangle mesh, but I don't know how to create seam selection file. This is example:
So I want to create a txt file to record information about seam selection, like this:
ofstream(file);
file.open("seam_selection.txt");
file<<*********<<endl;
file<<*********<<endl;
file<<*********<<endl;
file.close();
I hope someone can help me answer how to write this txt file specifically,there is some information about the seam selection file creation:
Selection file that contains the cones and possibly the path between cones,
1.the first line for the cones indices
2.the second line must be empty
3.the third line optionally provides the seam edges indices as 'e11 e12 e21 e22 e31 e32' etc.