From: schrage Date: Mon, 7 Jun 1999 14:15:12 +0000 (+0000) Subject: Update for newer deal.II version, class GridGenerator,FEQ1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0a3cf643681c91ed066c18db7f3863e6ea0d2e48;p=dealii-svn.git Update for newer deal.II version, class GridGenerator,FEQ1 git-svn-id: https://svn.dealii.org/trunk@1377 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/doc/tutorial/chapter-1.elements/dofs.html b/deal.II/doc/tutorial/chapter-1.elements/dofs.html index f11c483f50..40c5393954 100644 --- a/deal.II/doc/tutorial/chapter-1.elements/dofs.html +++ b/deal.II/doc/tutorial/chapter-1.elements/dofs.html @@ -70,13 +70,14 @@ The finite elements used are bilinear. #include <grid/tria.h> #include <grid/dof.h> +#include <grid/grid_generator.h> #include <fe/fe_lib.lagrange.h> Triangulation<dim> tr; DoFHandler<dim> dof; -FELinear<dim> fe; +FEQ1<dim> fe; -tr.create_hypercube(-1,1); +GridGenerator<dim>::hyper_cube(tr,-1,1); dof.distribute_dofs(fe);