MAGiC  V5.0
Mailleurs Automatiques de Géometries intégrés à la Cao
fem_graph_noeud.h
Aller à la documentation de ce fichier.
1 //####//------------------------------------------------------------
2 //####//------------------------------------------------------------
3 //####// MAGiC
4 //####// Jean Christophe Cuilliere et Vincent FRANCOIS
5 //####// Departement de Genie Mecanique - UQTR
6 //####//------------------------------------------------------------
7 //####// MAGIC est un projet de recherche de l equipe ERICCA
8 //####// du departement de genie mecanique de l Universite du Quebec a Trois Rivieres
9 //####// http://www.uqtr.ca/ericca
10 //####// http://www.uqtr.ca/
11 //####//------------------------------------------------------------
12 //####//------------------------------------------------------------
13 //####//
14 //####// fem_graph_noeud.h
15 //####//
16 //####//------------------------------------------------------------
17 //####//------------------------------------------------------------
18 //####// COPYRIGHT 2000-2024
19 //####// jeu 13 jun 2024 11:58:54 EDT
20 //####//------------------------------------------------------------
21 //####//------------------------------------------------------------
22 #ifndef fem_graph_noeudH
23 #define fem_graph_noeudH
24 
25 
26 
27 #include <vector>
28 #include "tpl_map_entite.h"
29 
31 {
32 public:
33  FEM_GRAPH_NOEUD(class FEM_NOEUD* rac,class FEM_MAILLAGE* mai);
35 
36  int get_excentricite(void);
39 
40 private:
41  void construire(void);
45  std::vector<TPL_MAP_ENTITE<FEM_NOEUD*> > graph;
46 };
47 
48 
49 
50 #endif
51 
TPL_MAP_ENTITE
Definition: tpl_map_entite.h:35
FEM_GRAPH_NOEUD::~FEM_GRAPH_NOEUD
~FEM_GRAPH_NOEUD()
Definition: fem_graph_noeud.cpp:38
FEM_MAILLAGE
Definition: fem_maillage.h:66
FEM_GRAPH_NOEUD::construire
void construire(void)
Definition: fem_graph_noeud.cpp:43
tpl_map_entite.h
FEM_GRAPH_NOEUD::get_dernier_niveau
TPL_MAP_ENTITE< FEM_NOEUD * > & get_dernier_niveau(void)
Definition: fem_graph_noeud.cpp:83
FEM_GRAPH_NOEUD::get_excentricite
int get_excentricite(void)
Definition: fem_graph_noeud.cpp:78
FEM_NOEUD
Definition: fem_noeud.h:35
FEM_GRAPH_NOEUD
Definition: fem_graph_noeud.h:30
FEM_GRAPH_NOEUD::get_niveau
TPL_MAP_ENTITE< FEM_NOEUD * > & get_niveau(int num)
Definition: fem_graph_noeud.cpp:89
FEM_GRAPH_NOEUD::racine
FEM_NOEUD * racine
Definition: fem_graph_noeud.h:44
FEM_GRAPH_NOEUD::FEM_GRAPH_NOEUD
FEM_GRAPH_NOEUD(class FEM_NOEUD *rac, class FEM_MAILLAGE *mai)
Definition: fem_graph_noeud.cpp:33
FEM_GRAPH_NOEUD::get_voisin_noeud
void get_voisin_noeud(FEM_NOEUD *no, TPL_MAP_ENTITE< FEM_NOEUD * > &liste)
Definition: fem_graph_noeud.cpp:94
FEM_GRAPH_NOEUD::graph
std::vector< TPL_MAP_ENTITE< FEM_NOEUD * > > graph
Definition: fem_graph_noeud.h:45
FEM_GRAPH_NOEUD::maillage
FEM_MAILLAGE * maillage
Definition: fem_graph_noeud.h:43