mirror of https://github.com/CGAL/cgal
Fix bbox initialization
This commit is contained in:
parent
8ff4f7793d
commit
428e47ebb6
|
|
@ -388,7 +388,7 @@ edge_aware_upsample_point_set(
|
||||||
|
|
||||||
// copy rich point set
|
// copy rich point set
|
||||||
std::vector<Rich_point> rich_point_set(number_of_input);
|
std::vector<Rich_point> rich_point_set(number_of_input);
|
||||||
CGAL::Bbox_3 bbox(0., 0., 0., 0., 0., 0.);
|
CGAL::Bbox_3 bbox;
|
||||||
|
|
||||||
typename PointRange::const_iterator it = begin; // point iterator
|
typename PointRange::const_iterator it = begin; // point iterator
|
||||||
for(unsigned int i = 0; it != end; ++it, ++i)
|
for(unsigned int i = 0; it != end; ++it, ++i)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue