From 99e8bece4c026ae7037dfbfff54e734ccf5b9fcc Mon Sep 17 00:00:00 2001 From: Giles Bathgate Date: Sun, 20 Mar 2022 10:44:16 +0000 Subject: [PATCH] Standardise check_has_on parameter name --- Nef_3/include/CGAL/Nef_3/SNC_intersection.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Nef_3/include/CGAL/Nef_3/SNC_intersection.h b/Nef_3/include/CGAL/Nef_3/SNC_intersection.h index e45fb81b265..0866dbc7c5e 100644 --- a/Nef_3/include/CGAL/Nef_3/SNC_intersection.h +++ b/Nef_3/include/CGAL/Nef_3/SNC_intersection.h @@ -132,14 +132,14 @@ class SNC_intersection { static bool does_intersect_internally( const Ray_3& ray, Halffacet_const_handle f, Point_3& p, - bool checkHasOn = true) { + bool check_has_on = true) { CGAL_NEF_TRACEN("-> Intersection facet - ray"); Plane_3 h( f->plane()); CGAL_NEF_TRACEN("-> facet's plane: " << h); CGAL_NEF_TRACEN("-> a point on the plane: " << h.point()); CGAL_NEF_TRACEN("-> ray: " << ray); CGAL_assertion(!ray.is_degenerate()); - if(checkHasOn) { + if(check_has_on) { if(h.has_on(ray.source())) return false; } else