mirror of https://github.com/CGAL/cgal
Rename two write_points functions as well
This commit is contained in:
parent
8f658695f8
commit
c7b95e25c5
|
|
@ -252,7 +252,7 @@ write_cdt_points_tag(std::ostream& os,
|
|||
// writes the points appended data at the end of the .vtu file
|
||||
template <class Tr>
|
||||
void
|
||||
write_points(std::ostream& os,
|
||||
write_cdt_points(std::ostream& os,
|
||||
const Tr & tr,
|
||||
std::map<typename Tr::Vertex_handle,
|
||||
std::size_t> & V)
|
||||
|
|
@ -319,7 +319,7 @@ void write_vtu(std::ostream& os,
|
|||
<< " </UnstructuredGrid>\n";
|
||||
if (binary) {
|
||||
os << "<AppendedData encoding=\"raw\">\n_";
|
||||
write_points(os,tr,V); // write points before cells to fill the std::map V
|
||||
write_cdt_points(os,tr,V); // write points before cells to fill the std::map V
|
||||
write_cells_2(os,tr, number_of_triangles, V);
|
||||
}
|
||||
os << "</VTKFile>\n";
|
||||
|
|
|
|||
|
|
@ -196,7 +196,7 @@ write_c3t3_points_tag(std::ostream& os,
|
|||
// writes the points appended data at the end of the .vtu file
|
||||
template <class Tr>
|
||||
void
|
||||
write_points(std::ostream& os,
|
||||
write_c3t3_points(std::ostream& os,
|
||||
const Tr & tr,
|
||||
std::map<typename Tr::Vertex_handle,
|
||||
std::size_t> & V)
|
||||
|
|
@ -299,7 +299,7 @@ void output_to_vtu(std::ostream& os,
|
|||
<< " </UnstructuredGrid>\n";
|
||||
if (binary) {
|
||||
os << "<AppendedData encoding=\"raw\">\n_";
|
||||
write_points(os,tr,V); // write points before cells to fill the std::map V
|
||||
write_c3t3_points(os,tr,V); // write points before cells to fill the std::map V
|
||||
write_cells(os,c3t3,V, mids);//todo mids should be filled by write_attribute_tag
|
||||
write_attributes(os,mids);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue