From 84f1001266fe09bd7220d2bfea97778131c993df Mon Sep 17 00:00:00 2001 From: David Wells Date: Tue, 1 Apr 2025 11:28:38 -0400 Subject: [PATCH] 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. --- include/deal.II/grid/tria_accessor.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.39.5