mirror of https://github.com/CGAL/cgal
Change default param value (for export)
This commit is contained in:
parent
5ae8464a81
commit
754808bef7
|
|
@ -31,7 +31,7 @@ void test(int dim)
|
|||
std::stringstream output_filename;
|
||||
output_filename << "data/rt_dim" << dim << ".off";
|
||||
std::ofstream off_stream(output_filename.str());
|
||||
CGAL::export_triangulation_to_off(off_stream, rt, false);
|
||||
CGAL::export_triangulation_to_off(off_stream, rt);
|
||||
}
|
||||
|
||||
int main()
|
||||
|
|
|
|||
|
|
@ -108,7 +108,7 @@ template < class GT, class TDS >
|
|||
std::ostream &
|
||||
export_triangulation_to_off(std::ostream & os,
|
||||
const Triangulation<GT,TDS> & tr,
|
||||
bool in_3D_export_surface_only = true)
|
||||
bool in_3D_export_surface_only = false)
|
||||
{
|
||||
typedef Triangulation<GT,TDS> Tr;
|
||||
typedef typename Tr::Vertex_const_handle Vertex_handle;
|
||||
|
|
|
|||
Loading…
Reference in New Issue