source: issm/branches/trunk-jpl-damage/src/c/objects/Bamg/BamgGeom.h@ 12168

Last change on this file since 12168 was 12168, checked in by cborstad, 13 years ago

merged trunk-jpl into branch through revision 12167

File size: 556 bytes
Line 
1/*!\file: BamgGeom.h
2 */
3
4#ifndef _BAMGGEOM_H_
5#define _BAMGGEOM_H_
6
7class BamgGeom{
8
9 public:
10 int VerticesSize[2];
11 double* Vertices;
12 int EdgesSize[2];
13 double* Edges;
14 int TangentAtEdgesSize[2];
15 double* TangentAtEdges;
16 int CornersSize[2];
17 double* Corners;
18 int RequiredVerticesSize[2];
19 double* RequiredVertices;
20 int RequiredEdgesSize[2];
21 double* RequiredEdges;
22 int CrackedEdgesSize[2];
23 double* CrackedEdges;
24 int SubDomainsSize[2];
25 double* SubDomains;
26
27 BamgGeom();
28 ~BamgGeom();
29};
30
31#endif
Note: See TracBrowser for help on using the repository browser.