From: David Wells Date: Mon, 30 Jun 2025 13:32:37 +0000 (-0400) Subject: Mapping: refer to ReferenceCell, not GeometryInfo. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3c9ee050d98a1fad19d0d012594e4ac3aa64738f;p=dealii.git Mapping: refer to ReferenceCell, not GeometryInfo. --- 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.