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

#include <GeomVertex.h>

Inheritance diagram for bamg::GeomVertex:
bamg::BamgVertex

Public Member Functions

 GeomVertex ()
 
int Corner () const
 
int Required () const
 
void SetCorner ()
 
void SetRequired ()
 
- Public Member Functions inherited from bamg::BamgVertex
 operator I2 () const
 
 operator const R2 & () const
 
 operator Metric () const
 
double operator() (R2 x) const
 
 BamgVertex ()
 
double Smoothing (Mesh &, Mesh &, Triangle *&, double=1)
 
void MetricFromHessian (const double Hxx, const double Hyx, const double Hyy, const double smin, const double smax, const double s, const double err, BamgOpts *bamgopts)
 
void Echo ()
 
int GetReferenceNumber () const
 
I2 GetIntegerCoordinates () const
 
long Optim (int=1, int=0)
 
void Set (const BamgVertex &rec, const Mesh &, Mesh &)
 

Data Fields

int type
 
- Data Fields inherited from bamg::BamgVertex
I2 i
 
R2 r
 
Metric m
 
long ReferenceNumber
 
long PreviousNumber
 
short IndexInTriangle
 
union {
   Triangle *   t
 
   long   color
 
   BamgVertex *   MeshVertexHook
 
   VertexOnGeom *   GeomEdgeHook
 
   BamgVertex *   BackgroundVertexHook
 
   VertexOnEdge *   BackgroundEdgeHook
 
}; 
 

Friends

class Geometry
 

Detailed Description

Definition at line 11 of file GeomVertex.h.

Constructor & Destructor Documentation

◆ GeomVertex()

bamg::GeomVertex::GeomVertex ( )
inline

Definition at line 19 of file GeomVertex.h.

19 :type(0){};

Member Function Documentation

◆ Corner()

int bamg::GeomVertex::Corner ( ) const

Definition at line 15 of file GeomVertex.cpp.

15  {/*{{{*/
16  return type & 4;
17  }

◆ Required()

int bamg::GeomVertex::Required ( ) const

Definition at line 19 of file GeomVertex.cpp.

19  {/*{{{*/
20  // a corner is required
21  return type & 6;
22  }

◆ SetCorner()

void bamg::GeomVertex::SetCorner ( )

Definition at line 24 of file GeomVertex.cpp.

24  {/*{{{*/
25  type |= 4;
26  }

◆ SetRequired()

void bamg::GeomVertex::SetRequired ( )

Definition at line 28 of file GeomVertex.cpp.

28  {/*{{{*/
29  type |= 2;
30  }

Friends And Related Function Documentation

◆ Geometry

friend class Geometry
friend

Definition at line 14 of file GeomVertex.h.

Field Documentation

◆ type

int bamg::GeomVertex::type

Definition at line 16 of file GeomVertex.h.


The documentation for this class was generated from the following files:
bamg::GeomVertex::type
int type
Definition: GeomVertex.h:16