mirror of https://github.com/CGAL/cgal
rename output file
This commit is contained in:
parent
f5ec9b05b7
commit
9a860ac3f4
|
|
@ -101,7 +101,7 @@ int main(int argc, char* argv[])
|
|||
output.close();
|
||||
|
||||
// Output skeleton points and the corresponding surface points
|
||||
output.open("correspondance.cgal");
|
||||
output.open("correspondence.cgal");
|
||||
for(Skeleton_vertex v : vertices(skeleton))
|
||||
for(vertex_descriptor vd : skeleton[v].vertices)
|
||||
output << "2 " << skeleton[v].point << " " << get(CGAL::vertex_point, tmesh, vd) << "\n";
|
||||
|
|
|
|||
|
|
@ -63,7 +63,7 @@ int main()
|
|||
output.close();
|
||||
|
||||
// Output skeleton points and the corresponding surface points
|
||||
output.open("correspondance-lcc.polylines.txt");
|
||||
output.open("correspondence-lcc.polylines.txt");
|
||||
for(Skeleton_vertex v : CGAL::make_range(vertices(skeleton)))
|
||||
for(vertex_descriptor vd : skeleton[v].vertices)
|
||||
output << "2 " << skeleton[v].point << " " << get(CGAL::vertex_point, lcc, vd) << "\n";
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@ int main(int argc, char* argv[])
|
|||
output.close();
|
||||
|
||||
// Output skeleton points and the corresponding surface points
|
||||
output.open("correspondance-poly.polylines.txt");
|
||||
output.open("correspondence-poly.polylines.txt");
|
||||
for(Skeleton_vertex v : CGAL::make_range(vertices(skeleton)))
|
||||
for(vertex_descriptor vd : skeleton[v].vertices)
|
||||
output << "2 " << skeleton[v].point << " " << get(CGAL::vertex_point, tmesh, vd) << "\n";
|
||||
|
|
|
|||
|
|
@ -72,7 +72,7 @@ int main(int argc, char* argv[])
|
|||
output.close();
|
||||
|
||||
// Output skeleton points and the corresponding surface points
|
||||
output.open("correspondance-sm.polylines.txt");
|
||||
output.open("correspondence-sm.polylines.txt");
|
||||
for(Skeleton_vertex v : CGAL::make_range(vertices(skeleton)))
|
||||
for(vertex_descriptor vd : skeleton[v].vertices)
|
||||
output << "2 " << skeleton[v].point << " " << get(CGAL::vertex_point, tmesh, vd) << "\n";
|
||||
|
|
|
|||
|
|
@ -64,7 +64,7 @@ int main(int argc, char* argv[])
|
|||
output.close();
|
||||
|
||||
// Output skeleton points and the corresponding surface points
|
||||
output.open("correspondance-sm.polylines.txt");
|
||||
output.open("correspondence-sm.polylines.txt");
|
||||
for(Skeleton_vertex v : CGAL::make_range(vertices(skeleton)))
|
||||
for(vertex_descriptor vd : skeleton[v].vertices)
|
||||
output << "2 " << skeleton[v].point << " " << get(CGAL::vertex_point, tmesh, vd) << "\n";
|
||||
|
|
|
|||
|
|
@ -69,7 +69,7 @@ int main()
|
|||
output.close();
|
||||
|
||||
// Output skeleton points and the corresponding surface points
|
||||
output.open("correspondance-lcc.polylines.txt");
|
||||
output.open("correspondence-lcc.polylines.txt");
|
||||
for(Skeleton_vertex v : CGAL::make_range(vertices(skeleton)))
|
||||
for(vertex_descriptor vd : skeleton[v].vertices)
|
||||
output << "2 " << skeleton[v].point << " "
|
||||
|
|
|
|||
|
|
@ -69,7 +69,7 @@ int main(int argc, char* argv[])
|
|||
output.close();
|
||||
|
||||
// Output skeleton points and the corresponding surface points
|
||||
output.open("correspondance-poly.polylines.txt");
|
||||
output.open("correspondence-poly.polylines.txt");
|
||||
for(Skeleton_vertex v : CGAL::make_range(vertices(skeleton)))
|
||||
for(vertex_descriptor vd : skeleton[v].vertices)
|
||||
output << "2 " << skeleton[v].point << " "
|
||||
|
|
|
|||
|
|
@ -48,7 +48,7 @@ int main(int argc, char* argv[])
|
|||
output.close();
|
||||
|
||||
// Output skeleton points and the corresponding surface points
|
||||
output.open("correspondance-sm.polylines.txt");
|
||||
output.open("correspondence-sm.polylines.txt");
|
||||
for(Skeleton_vertex v : CGAL::make_range(vertices(skeleton)))
|
||||
for(vertex_descriptor vd : skeleton[v].vertices)
|
||||
output << "2 " << skeleton[v].point << " " << get(CGAL::vertex_point, tmesh, vd) << "\n";
|
||||
|
|
|
|||
Loading…
Reference in New Issue