Change default param value (for export)

This commit is contained in:
Clement Jamin 2014-06-17 14:53:10 +02:00
parent 5ae8464a81
commit 754808bef7
2 changed files with 2 additions and 2 deletions

View File

@ -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()

View File

@ -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;