~njansson/dolfin/hpc

« back to all changes in this revision

Viewing changes to dolfin/mesh/MeshData.h

  • 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:
2
2
// Licensed under the GNU LGPL Version 2.1.
3
3
//
4
4
// First added:  2008-05-19
5
 
// Last changed: 2008-05-21
 
5
// Last changed: 2008-05-28
6
6
 
7
7
#ifndef __MESH_DATA_H
8
8
#define __MESH_DATA_H
45
45
    Array<uint>* createArray(std::string name, uint size);
46
46
    
47
47
    /// Return MeshFunction with given name (returning zero if data is not available)
48
 
    MeshFunction<uint>* meshfunction(std::string name);
 
48
    MeshFunction<uint>* meshFunction(std::string name);
49
49
 
50
50
    /// Return Array with given name (returning zero if data is not available)
51
51
    Array<uint>* array(std::string name);