mirror of https://github.com/CGAL/cgal
add missing return statement
This commit is contained in:
parent
f7d01c9b22
commit
2d37774684
|
|
@ -33,8 +33,9 @@ void make_skin_surface_mesh_3(Polyhedron_3 &p,
|
||||||
int nSubdivisions=0,
|
int nSubdivisions=0,
|
||||||
bool grow_balls=true)
|
bool grow_balls=true)
|
||||||
{
|
{
|
||||||
if (shrink_factor == 1) {
|
if (shrink_factor >= 1) {
|
||||||
make_union_of_balls_mesh_3(p,begin,end,nSubdivisions);
|
make_union_of_balls_mesh_3(p,begin,end,nSubdivisions);
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
typedef typename WP_iterator::value_type Weighted_point;
|
typedef typename WP_iterator::value_type Weighted_point;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue