Skip to content
Snippets Groups Projects
Commit dea6b5c7 authored by Christian Engwer's avatar Christian Engwer
Browse files

use NewGeometryType

[[Imported from SVN: r3919]]
parent c4c3feec
No related branches found
No related tags found
No related merge requests found
......@@ -16,8 +16,10 @@ using namespace Dune;
int main (int argc, char *argv[])
{
ReferenceElements<double,2>::general(cube).subEntity(0,1,0,2);
Dune::NewGeometryType cube2d(Dune::NewGeometryType::cube, 2);
Dune::NewGeometryType cube1d(Dune::NewGeometryType::cube, 1);
Dune::LagrangeShapeFunctions<double, double, 1>::general(cube,1);
ReferenceElements<double,2>::general(cube2d).subEntity(0,1,0,2);
Dune::LagrangeShapeFunctions<double, double, 1>::general(cube1d,1);
}
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