Ice Sheet System Model  4.18
Code documentation
Public Member Functions | Data Fields
bamg::VertexOnGeom Class Reference

#include <VertexOnGeom.h>

Public Member Functions

 VertexOnGeom ()
 
 VertexOnGeom (BamgVertex &m, GeomVertex &g)
 
 VertexOnGeom (BamgVertex &m, GeomEdge &g, double s)
 
 operator BamgVertex * () const
 
 operator GeomVertex * () const
 
 operator GeomEdge * () const
 
 operator const double & () const
 
int OnGeomVertex () const
 
int OnGeomEdge () const
 
int IsRequiredVertex ()
 
void SetOn ()
 
void Set (const VertexOnGeom &, const Mesh &, Mesh &)
 

Data Fields

BamgVertexmeshvertex
 
double curvilincoord
 
union {
   GeomVertex *   gv
 
   GeomEdge *   ge
 
}; 
 

Detailed Description

Definition at line 13 of file VertexOnGeom.h.

Constructor & Destructor Documentation

◆ VertexOnGeom() [1/3]

bamg::VertexOnGeom::VertexOnGeom ( )

Definition at line 13 of file VertexOnGeom.cpp.

13  {/*{{{*/
14  meshvertex=NULL;
15  curvilincoord=0;
16  gv=0;
17  }

◆ VertexOnGeom() [2/3]

bamg::VertexOnGeom::VertexOnGeom ( BamgVertex m,
GeomVertex g 
)

Definition at line 19 of file VertexOnGeom.cpp.

19  {/*{{{*/
20  meshvertex=&m;
21  curvilincoord=-1;
22  gv=&g;
23  }

◆ VertexOnGeom() [3/3]

bamg::VertexOnGeom::VertexOnGeom ( BamgVertex m,
GeomEdge g,
double  s 
)

Definition at line 25 of file VertexOnGeom.cpp.

25  {/*{{{*/
26  meshvertex=&m;
27  curvilincoord=s;
28  ge=&g;
29  }

Member Function Documentation

◆ operator BamgVertex *()

bamg::VertexOnGeom::operator BamgVertex * ( ) const
inline

Definition at line 30 of file VertexOnGeom.h.

30 {return meshvertex;}

◆ operator GeomVertex *()

bamg::VertexOnGeom::operator GeomVertex * ( ) const
inline

Definition at line 31 of file VertexOnGeom.h.

31 {return gv;}

◆ operator GeomEdge *()

bamg::VertexOnGeom::operator GeomEdge * ( ) const
inline

Definition at line 32 of file VertexOnGeom.h.

32 {return ge;}

◆ operator const double &()

bamg::VertexOnGeom::operator const double & ( ) const
inline

Definition at line 33 of file VertexOnGeom.h.

33 {return curvilincoord;}

◆ OnGeomVertex()

int bamg::VertexOnGeom::OnGeomVertex ( ) const

Definition at line 45 of file VertexOnGeom.cpp.

45  {/*{{{*/
46  return curvilincoord<0;
47  }

◆ OnGeomEdge()

int bamg::VertexOnGeom::OnGeomEdge ( ) const

Definition at line 49 of file VertexOnGeom.cpp.

49  {/*{{{*/
50  return curvilincoord>=0;
51  }

◆ IsRequiredVertex()

int bamg::VertexOnGeom::IsRequiredVertex ( )

Definition at line 53 of file VertexOnGeom.cpp.

53  {/*{{{*/
54  return ((curvilincoord<0 ? (gv?gv->Required():0):0 ));
55  }

◆ SetOn()

void bamg::VertexOnGeom::SetOn ( )

Definition at line 57 of file VertexOnGeom.cpp.

57  {/*{{{*/
60  }

◆ Set()

void bamg::VertexOnGeom::Set ( const VertexOnGeom rec,
const Mesh Th,
Mesh ThNew 
)

Definition at line 33 of file VertexOnGeom.cpp.

33  {/*{{{*/
34  *this = rec;
35  meshvertex = ThNew.vertices + Th.GetId(meshvertex);
36  if(gv){
37  if (curvilincoord < 0 )
38  gv = ThNew.Gh.vertices + Th.Gh.GetId(gv);
39  else
40  ge = ThNew.Gh.edges + Th.Gh.GetId(ge);
41  }
42 
43  }

Field Documentation

◆ meshvertex

BamgVertex* bamg::VertexOnGeom::meshvertex

Definition at line 17 of file VertexOnGeom.h.

◆ curvilincoord

double bamg::VertexOnGeom::curvilincoord

Definition at line 18 of file VertexOnGeom.h.

◆ gv

GeomVertex* bamg::VertexOnGeom::gv

Definition at line 20 of file VertexOnGeom.h.

◆ ge

GeomEdge* bamg::VertexOnGeom::ge

Definition at line 21 of file VertexOnGeom.h.

◆ @1

union { ... }

The documentation for this class was generated from the following files:
bamg::VertexOnGeom::meshvertex
BamgVertex * meshvertex
Definition: VertexOnGeom.h:17
bamg::VertexOnGeom::gv
GeomVertex * gv
Definition: VertexOnGeom.h:20
bamg::IsVertexOnGeom
const int IsVertexOnGeom
Definition: macros.h:10
bamg::BamgVertex::GeomEdgeHook
VertexOnGeom * GeomEdgeHook
Definition: BamgVertex.h:31
bamg::VertexOnGeom::curvilincoord
double curvilincoord
Definition: VertexOnGeom.h:18
bamg::GeomVertex::Required
int Required() const
Definition: GeomVertex.cpp:19
bamg::VertexOnGeom::ge
GeomEdge * ge
Definition: VertexOnGeom.h:21
bamg::BamgVertex::IndexInTriangle
short IndexInTriangle
Definition: BamgVertex.h:25