Ice Sheet System Model  4.18
Code documentation
GeomVertex.h
Go to the documentation of this file.
1 #ifndef _GEOMETRICALVERTEX_H_
2 #define _GEOMETRICALVERTEX_H_
3 
4 #include "./include.h"
5 #include "BamgVertex.h"
6 
7 namespace bamg {
8 
9  class Geometry;
10 
11  class GeomVertex : public BamgVertex {
12 
13  public:
14  friend class Geometry;
15 
16  int type;
17 
18  //Constructors
19  GeomVertex():type(0){};
20 
21  //Methods
22  int Corner() const;
23  int Required()const;
24  void SetCorner();
25  void SetRequired();
26 
27  };
28 
29 }
30 #endif
bamg::BamgVertex
Definition: BamgVertex.h:15
bamg::Geometry
Definition: Geometry.h:18
BamgVertex.h
bamg
Definition: AdjacentTriangle.cpp:9
bamg::GeomVertex::SetCorner
void SetCorner()
Definition: GeomVertex.cpp:24
bamg::GeomVertex::GeomVertex
GeomVertex()
Definition: GeomVertex.h:19
bamg::GeomVertex::Corner
int Corner() const
Definition: GeomVertex.cpp:15
bamg::GeomVertex::Required
int Required() const
Definition: GeomVertex.cpp:19
bamg::GeomVertex::type
int type
Definition: GeomVertex.h:16
bamg::GeomVertex
Definition: GeomVertex.h:11
include.h
prototypes for include.h
bamg::GeomVertex::SetRequired
void SetRequired()
Definition: GeomVertex.cpp:28