From 0fd5f4997513454b4ca439a1e7ffcdf1602acd50 Mon Sep 17 00:00:00 2001 From: Luca Heltai Date: Thu, 10 Aug 2023 16:45:24 +0200 Subject: [PATCH] Fix spelling and add changelog --- doc/news/changes/minor/20230810MarcoFeder | 3 +++ include/deal.II/numerics/rtree.h | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 doc/news/changes/minor/20230810MarcoFeder diff --git a/doc/news/changes/minor/20230810MarcoFeder b/doc/news/changes/minor/20230810MarcoFeder new file mode 100644 index 0000000000..44b9b57468 --- /dev/null +++ b/doc/news/changes/minor/20230810MarcoFeder @@ -0,0 +1,3 @@ +New: Added a function extract_children_of_level() that returns the bounding boxes associated to the children of a given level of an Rtree and stores them in a vector. +
+(Marco Feder, 2023/08/10) diff --git a/include/deal.II/numerics/rtree.h b/include/deal.II/numerics/rtree.h index e25bcebddd..e04e73c3ed 100644 --- a/include/deal.II/numerics/rtree.h +++ b/include/deal.II/numerics/rtree.h @@ -430,7 +430,8 @@ extract_rtree_level(const Rtree &tree, const unsigned int level); /** * Given an Rtree object @p tree and a target level @p level, this function returns * the bounding boxes associated to the children on level l+1 and stores them in - * a vector. The resulting type is hence a vector of vectors of BoundingBox. + * a vector. The resulting type is hence a vector of vectors of BoundingBox + * objects. * If @p v is such a vector, then @p v has the following property: * @p v[i] is a vector with all of the bounding boxes associated to the children * of the i-th node of the tree. -- 2.39.5