From: hartmann Date: Thu, 16 Jun 2005 11:06:27 +0000 (+0000) Subject: child_cell_on_face, face_to_cell_vertices and face_to_cell_lines now include a new... X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b737d89d6ab032c79bba7c84754603aba90beee7;p=dealii-svn.git child_cell_on_face, face_to_cell_vertices and face_to_cell_lines now include a new face_orientation argument. This avoids aweful pieces of code including questioning face_orientation and using child_switch_tables. git-svn-id: https://svn.dealii.org/trunk@10872 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/doc/news/changes.html b/deal.II/doc/news/changes.html index 01b8c70eeb..87cdc3c9b1 100644 --- a/deal.II/doc/news/changes.html +++ b/deal.II/doc/news/changes.html @@ -428,13 +428,28 @@ inconvenience this causes.

deal.II

    +
  1. + Improved: The GeometryInfo::child_cell_on_face, face_to_cell_vertices and face_to_cell_lines now have an additional + face_orientation argument, which has no effect in + 2d and which defaults to true (standard + orientation) in 3d. Now these functions return the right values + also for the case of non-standard oriented faces in 3d. This + avoids several aweful pieces of code including questioning + face_orientation and using child_switch_tables. +
    + (RH, 2005/06/16) +

    +
  2. Changed: The method FETools::lexicographic_to_hierarchic_numbering now takes a FiniteElementData instead of a FE_Q object. Now this function can also be called by the FE_Q - constructor avoiding duplication of code. + constructor which avoids code duplication.
    (RH, 2005/06/13)