mirror of https://github.com/CGAL/cgal
Fix a warning about an uninitialized variable
The warning is right, by the way. Trivial bug-fix for master.
This commit is contained in:
parent
af005e81dc
commit
fd06817bd7
|
|
@ -23,6 +23,7 @@ Meshing_thread* cgal_code_mesh_3(const Image* pImage,
|
|||
Scene_c3t3_item* p_new_item = new Scene_c3t3_item();
|
||||
|
||||
Mesh_parameters param;
|
||||
param.protect_features = false;
|
||||
param.facet_angle = facet_angle;
|
||||
param.facet_sizing = facet_sizing;
|
||||
param.facet_approx = facet_approx;
|
||||
|
|
|
|||
|
|
@ -31,6 +31,7 @@ Meshing_thread* cgal_code_mesh_3(const Implicit_function_interface* pfunction,
|
|||
Scene_c3t3_item* p_new_item = new Scene_c3t3_item();
|
||||
|
||||
Mesh_parameters param;
|
||||
param.protect_features = false;
|
||||
param.facet_angle = facet_angle;
|
||||
param.facet_sizing = facet_sizing;
|
||||
param.facet_approx = facet_approx;
|
||||
|
|
|
|||
Loading…
Reference in New Issue