From 290cef9d4fd7fc84d355f5536c87aabe0850825f Mon Sep 17 00:00:00 2001 From: wolf Date: Thu, 10 Dec 1998 16:41:53 +0000 Subject: [PATCH] Fix trivial problems. git-svn-id: https://svn.dealii.org/trunk@693 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/include/grid/tria_hex.h | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/deal.II/deal.II/include/grid/tria_hex.h b/deal.II/deal.II/include/grid/tria_hex.h index f171e828d9..44a67a4c7f 100644 --- a/deal.II/deal.II/include/grid/tria_hex.h +++ b/deal.II/deal.II/include/grid/tria_hex.h @@ -25,21 +25,23 @@ class Hexahedron { public: /** - * Construct a Quad with line - * indices #i0# through #i3#. By default, + * Construct a Hex with quad + * indices #i0# through #i5#. By default, * indices are set to -1, i.e. an * invalid value. * - * By convention, the four lines must - * be numbered in counterclockwise sense! + * No convention is set as of now on the + * order of quads */ - Quad (const int i0 = -1, - const int i1 = -1, - const int i2 = -1, - const int i3 = -1); + Hexahedron (const int i0 = -1, + const int i1 = -1, + const int i2 = -1, + const int i3 = -1, + const int i4 = -1, + const int i5 = -1); /** - * Return the index of line #i#=0 + * Return the index of quad #i#=0 * through 5. */ int quad (const int i) const; @@ -58,7 +60,7 @@ class Hexahedron { << "Indices for the quad number must be 0 through 5, " << "but you gave " << arg1); protected: - int quads[6]; + int quads[6]; }; -- 2.39.5