From d5a4df5296f18e34882a5927f8128af67f4e2eb0 Mon Sep 17 00:00:00 2001 From: hartmann Date: Tue, 23 Dec 2008 12:42:10 +0000 Subject: [PATCH] Bring bug fix from deal.II_DLR@6149 to deal.II: Remove a (serious) bug where we created wrong meshes in 3D cases with both anisotropic refinement and non-standard line orientation. git-svn-id: https://svn.dealii.org/trunk@18001 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/source/grid/tria.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deal.II/deal.II/source/grid/tria.cc b/deal.II/deal.II/source/grid/tria.cc index 1c4375af99..8c1f76a9c1 100644 --- a/deal.II/deal.II/source/grid/tria.cc +++ b/deal.II/deal.II/source/grid/tria.cc @@ -5808,7 +5808,7 @@ namespace internal new_quads[0]->set_line_orientation(0,quad->line_orientation(0)); new_quads[0]->set_line_orientation(2,quad->line_orientation(2)); new_quads[1]->set_line_orientation(1,quad->line_orientation(1)); - new_quads[1]->set_line_orientation(2,quad->line_orientation(3)); + new_quads[1]->set_line_orientation(3,quad->line_orientation(3)); if (aniso_quad_ref_case==RefinementCase::cut_x) { new_quads[0]->set_line_orientation(3,quad->line_orientation(3)); -- 2.39.5