From: David Wells Date: Tue, 1 Apr 2025 15:28:38 +0000 (-0400) Subject: Fix two minor orientation bugs. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F18316%2Fhead;p=dealii.git Fix two minor orientation bugs. 'orientation' and 'combined_orientation' are presently the same in 2d but won't be once we switch the default encoding. --- diff --git a/include/deal.II/grid/tria_accessor.h b/include/deal.II/grid/tria_accessor.h index 10c08b3cc9..4667b9ea18 100644 --- a/include/deal.II/grid/tria_accessor.h +++ b/include/deal.II/grid/tria_accessor.h @@ -5428,7 +5428,7 @@ TriaAccessor::combined_face_orientation( return numbers::default_geometric_orientation; else return this->tria->levels[this->present_level] - ->face_orientations.get_orientation( + ->face_orientations.get_combined_orientation( this->present_index * ReferenceCells::max_n_faces() + face); } else @@ -5591,7 +5591,7 @@ TriaAccessor::set_line_orientation( Assert(dim != 2, ExcMessage("In 2d lines are faces, and, for compatibility with other " "dimensions, their orientations should be set via " - "set_combined_orientation().")); + "set_combined_face_orientation().")); // work around a bogus GCC-9 warning which considers line and value unused // except in 3d (void)line;