~ubuntu-branches/ubuntu/wily/dolfin/wily-proposed

« back to all changes in this revision

Viewing changes to dolfin/mesh/DynamicMeshEditor.h

  • Committer: Package Import Robot
  • Author(s): Johannes Ring
  • Date: 2014-09-22 14:35:34 UTC
  • mfrom: (1.1.17) (19.1.23 sid)
  • Revision ID: package-import@ubuntu.com-20140922143534-0yi89jyuqbgdxwm9
Tags: 1.4.0+dfsg-4
* debian/control: Disable libcgal-dev on i386, mipsel and sparc.
* debian/rules: Remove bad directives in pkg-config file dolfin.pc
  (closes: #760658).
* Remove debian/libdolfin-dev.lintian-overrides.

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
 
48
48
    /// Open mesh of given cell type, topological and geometrical dimension
49
49
    void open(Mesh& mesh, CellType::Type type, std::size_t tdim,
50
 
              std::size_t gdim);
 
50
              std::size_t gdim, std::size_t num_global_vertices,
 
51
              std::size_t num_global_cells);
51
52
 
52
53
    /// Open mesh of given cell type, topological and geometrical dimension
53
 
    void open(Mesh& mesh, std::string type, std::size_t tdim, std::size_t gdim);
 
54
    void open(Mesh& mesh, std::string type, std::size_t tdim, std::size_t gdim,
 
55
              std::size_t num_global_vertices, std::size_t num_global_cells);
54
56
 
55
57
    /// Add vertex v at given point p
56
58
    void add_vertex(std::size_t v, const Point& p);
98
100
    // Cell type
99
101
    CellType* _cell_type;
100
102
 
 
103
    // Number of global vertices and cells
 
104
    std::size_t _num_global_vertices, _num_global_cells;
 
105
 
101
106
    // Dynamic storage for vertex coordinates
102
107
    std::vector<double> vertex_coordinates;
103
108