mirror of https://github.com/CGAL/cgal
Replace reference by variable in constructor for default value
This commit is contained in:
parent
d5663b3685
commit
05a1e68c79
|
|
@ -675,7 +675,7 @@ namespace CGAL {
|
||||||
*/
|
*/
|
||||||
Advancing_front_surface_reconstruction(Triangulation_3& dt,
|
Advancing_front_surface_reconstruction(Triangulation_3& dt,
|
||||||
Filter filter = Filter(),
|
Filter filter = Filter(),
|
||||||
Priority& priority = Priority())
|
Priority priority = Priority())
|
||||||
: T(dt), _number_of_border(1), COS_ALPHA_SLIVER(-0.86),
|
: T(dt), _number_of_border(1), COS_ALPHA_SLIVER(-0.86),
|
||||||
NB_BORDER_MAX(15), DELTA(.86), min_K(HUGE_VAL),
|
NB_BORDER_MAX(15), DELTA(.86), min_K(HUGE_VAL),
|
||||||
eps(1e-7), inv_eps_2(coord_type(1)/(eps*eps)), eps_3(eps*eps*eps),
|
eps(1e-7), inv_eps_2(coord_type(1)/(eps*eps)), eps_3(eps*eps*eps),
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue