From 3c9ee050d98a1fad19d0d012594e4ac3aa64738f Mon Sep 17 00:00:00 2001 From: David Wells Date: Mon, 30 Jun 2025 09:32:37 -0400 Subject: [PATCH] Mapping: refer to ReferenceCell, not GeometryInfo. --- include/deal.II/fe/mapping.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/deal.II/fe/mapping.h b/include/deal.II/fe/mapping.h index 655ec18214..082e89a90c 100644 --- a/include/deal.II/fe/mapping.h +++ b/include/deal.II/fe/mapping.h @@ -429,7 +429,7 @@ public: /** * Return whether the mapping preserves vertex locations. In other words, * this function returns whether the mapped location of the reference cell - * vertices (given by GeometryInfo::unit_cell_vertex()) equals the result of + * vertices (given by ReferenceCell::vertex()) equals the result of * cell-@>vertex() (i.e., information stored by the * triangulation). * @@ -485,7 +485,7 @@ public: * throws an exception of type Mapping::ExcTransformationFailed . Whether * the given point @p p lies outside the cell can therefore be determined by * checking whether the returned reference coordinates lie inside or outside - * the reference cell (e.g., using GeometryInfo::is_inside_unit_cell()) or + * the reference cell (e.g., using ReferenceCell::contains_point()) or * whether the exception mentioned above has been thrown. * * @param cell Iterator to the cell that will be used to define the mapping. -- 2.39.5