Fix bbox initialization

This commit is contained in:
Simon Giraudot 2020-04-23 13:26:16 +02:00
parent 8ff4f7793d
commit 428e47ebb6
1 changed files with 1 additions and 1 deletions

View File

@ -388,7 +388,7 @@ edge_aware_upsample_point_set(
// copy rich point set
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
for(unsigned int i = 0; it != end; ++it, ++i)