Skip to content
Snippets Groups Projects
Commit 8d205b9e authored by Martin Nolte's avatar Martin Nolte
Browse files

merge rev 5590, 5629 and 5665 from trunk

[[Imported from SVN: r5678]]
parent 89979884
No related branches found
No related tags found
No related merge requests found
......@@ -74,10 +74,10 @@ namespace Dune {
void makeTetrahedron() {basicType_ = simplex; dim_ = 3;}
/** \brief Make a pyramid */
void makePyramid() {basicType_ = pyramid;}
void makePyramid() {basicType_ = pyramid; dim_ = 3;}
/** \brief Make a prism */
void makePrism() {basicType_ = prism;}
void makePrism() {basicType_ = prism; dim_ = 3;}
/** \brief Make a hexahedron */
void makeHexahedron() {basicType_ = cube; dim_ = 3;}
......@@ -170,6 +170,9 @@ namespace Dune {
break;
case prism :
s << "prism";
break;
default :
s << "invalid geometry type";
}
return s;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment