From: Ralf Hartmann Date: Tue, 23 Dec 2008 12:42:10 +0000 (+0000) Subject: Bring bug fix from deal.II_DLR@6149 to deal.II: Remove a (serious) bug where we creat... X-Git-Tag: v8.0.0~8234 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=84fc0af2bf02bab6cf7f6dc0f18d4d52755ba05f;p=dealii.git 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 --- 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));