ESyS-Particle  2.3
MeshData2D.h
Go to the documentation of this file.
1 // //
3 // Copyright (c) 2003-2014 by The University of Queensland //
4 // Centre for Geoscience Computing //
5 // http://earth.uq.edu.au/centre-geoscience-computing //
6 // //
7 // Primary Business: Brisbane, Queensland, Australia //
8 // Licensed under the Open Software License version 3.0 //
9 // http://www.opensource.org/licenses/osl-3.0.php //
10 // //
12 
13 #ifndef __MESHDATA2D_H
14 #define __MESHDATA2D_H
15 
16 // -- IO includes --
17 #include <iostream>
18 using std::istream;
19 
29 {
30  int id;
31  int tag;
32  double x,y;
33 
34  void read(istream&);
35 };
36 
46 {
47  int id,tag;
48  int p1,p2;
49 
50  void read(istream&);
51 };
52 
53 #endif // __MESHDATA2D_H
data describing one node(point) in a 2D "mesh"
Definition: MeshData2D.h:28
void read(istream &)
Definition: MeshData2D.cpp:25
void read(istream &)
Definition: MeshData2D.cpp:66
int id
Definition: MeshData2D.h:30
int tag
Definition: MeshData2D.h:47
int p1
Definition: MeshData2D.h:48
int p2
Definition: MeshData2D.h:48
double x
Definition: MeshData2D.h:32
data describing one Edge in a 2D "mesh"
Definition: MeshData2D.h:45
int id
Definition: MeshData2D.h:47
double y
Definition: MeshData2D.h:32
int tag
Definition: MeshData2D.h:31