Ice Sheet System Model  4.18
Code documentation
macros.h
Go to the documentation of this file.
1 #ifndef _BAMGMACROS_H
2 #define _BAMGMACROS_H
3 
4 #include "./typedefs.h"
5 
6 namespace bamg {
7 
8  const double Pi =3.141592653589793238462643383279502884197169399375105820974944592308;
9  const float fPi=3.141592653589793238462643383279502884197169399375105820974944592308;
10  const int IsVertexOnGeom = 8;
11  const int IsVertexOnVertex = 16;
12  const int IsVertexOnEdge = 32;
13  static const short VerticesOfTriangularEdge[3][2] = {{1,2},{2,0},{0,1}};
14  static const short EdgesVertexTriangle[3][2] = {{1,2},{2,0},{0,1}};
15  static const short OppositeVertex[3] = {0,1,2};
16  static const short OppositeEdge[3] = {0,1,2};
17  static const short NextEdge[3] = {1,2,0};
18  static const short PreviousEdge[3] = {2,0,1};
19  static const short NextVertex[3] = {1,2,0};
20  static const short PreviousVertex[3] = {2,0,1};
21 }
22 
23 #endif
bamg::IsVertexOnGeom
const int IsVertexOnGeom
Definition: macros.h:10
bamg::PreviousEdge
static const short PreviousEdge[3]
Definition: macros.h:18
bamg
Definition: AdjacentTriangle.cpp:9
bamg::PreviousVertex
static const short PreviousVertex[3]
Definition: macros.h:20
bamg::NextVertex
static const short NextVertex[3]
Definition: macros.h:19
bamg::OppositeEdge
static const short OppositeEdge[3]
Definition: macros.h:16
typedefs.h
bamg::fPi
const float fPi
Definition: macros.h:9
bamg::IsVertexOnVertex
const int IsVertexOnVertex
Definition: macros.h:11
bamg::Pi
const double Pi
Definition: macros.h:8
bamg::EdgesVertexTriangle
static const short EdgesVertexTriangle[3][2]
Definition: macros.h:14
bamg::VerticesOfTriangularEdge
static const short VerticesOfTriangularEdge[3][2]
Definition: macros.h:13
bamg::IsVertexOnEdge
const int IsVertexOnEdge
Definition: macros.h:12
bamg::OppositeVertex
static const short OppositeVertex[3]
Definition: macros.h:15
bamg::NextEdge
static const short NextEdge[3]
Definition: macros.h:17