Apply suggestions from Mael's code review

Co-authored-by: Mael <mael.rouxel.labbe@geometryfactory.com>
This commit is contained in:
Jane Tournois 2022-11-07 14:13:18 +01:00 committed by GitHub
parent 04e4eec6fd
commit a24c6ac84c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -1358,7 +1358,7 @@ struct Point_set_processing_3_np_helper<Point_set_3<Point, Vector>, NamedParamet
static constexpr bool has_normal_map()
{
return true;//either available in np, or in point set
return true; // either available in named parameters, and always available in Point_set_3 otherwise
}
};

View File

@ -264,8 +264,8 @@ bool read_PLY(std::istream& is,
NormalMap normal_map = NP_helper::get_normal_map(np);
return read_PLY_with_properties(is, output,
make_ply_point_reader(point_map),
make_ply_normal_reader(normal_map));
make_ply_point_reader(point_map),
make_ply_normal_reader(normal_map));
}
/**