~njansson/dolfin/hpc

« back to all changes in this revision

Viewing changes to demo/mesh/ale/cpp/main.cpp

  • Committer: Anders Logg
  • Date: 2008-05-28 08:13:15 UTC
  • mto: (2668.1.38 trunk)
  • mto: This revision was merged to the branch mainline in revision 2670.
  • Revision ID: logg@simula.no-20080528081315-fgsvgvhtxt8h54rv
Remove vertex_map and cell_map from BoundaryMesh interface.
They are now instead available as mesh data named "vertex map" and "cell map".

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
int main()
18
18
{
19
19
  // Create mesh
20
 
  //UnitSquare mesh(3, 3);
21
 
  UnitCube mesh(3, 3, 3);
 
20
  UnitSquare mesh(20, 20);
 
21
  //UnitCube mesh(3, 3, 3);
22
22
  plot(mesh);
23
23
 
24
24
  // Create boundary mesh
31
31
  {
32
32
    real* x = v->x();
33
33
    x[0] *= 3.0;
34
 
    //x[1] += 0.1*sin(5.0*x[0]);
 
34
    x[1] += 0.1*sin(5.0*x[0]);
35
35
  }
36
36
  plot(boundary);
37
37
 
38
38
  // Move mesh
 
39
  //mesh.move(boundary, vertex_map, cell_map, lagrange);
39
40
  mesh.move(boundary, vertex_map, cell_map, hermite);
40
41
  plot(mesh);
41
42