From 42454cf4701b039e9354a461ffa0c662540c28fc Mon Sep 17 00:00:00 2001 From: Sven Oesau Date: Wed, 17 May 2023 15:07:36 +0200 Subject: [PATCH] adapted concept to removed parameter --- Shape_detection/doc/Shape_detection/Concepts/RegionType.h | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/Shape_detection/doc/Shape_detection/Concepts/RegionType.h b/Shape_detection/doc/Shape_detection/Concepts/RegionType.h index 8a43af29e13..f1366dc8aba 100644 --- a/Shape_detection/doc/Shape_detection/Concepts/RegionType.h +++ b/Shape_detection/doc/Shape_detection/Concepts/RegionType.h @@ -37,16 +37,14 @@ public: typedef unspecified_type Region_index_map; /*! - checks if the item `to`, which is a neighbor of the item - `from`, can be added to the region represented by `region`. + checks if the item `i` can be added to the region represented by `region`. `CGAL::Shape_detection::Region_growing` calls this function each time when trying to add a new item to a region. If this function returns `true`, the - item with the index `to`, is added to the region, otherwise ignored. + item with the index `i`, is added to the region, otherwise ignored. */ bool is_part_of_region( - const Item from, - const Item to, + const Item i, const Region ®ion) { }