MAGiC  V5.0
Mailleurs Automatiques de Géometries intégrés à la Cao
ctvol_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 //####// ctvol_noeud.h
15 //####//
16 //####//------------------------------------------------------------
17 //####//------------------------------------------------------------
18 //####// COPYRIGHT 2000-2024
19 //####// jeu 13 jun 2024 11:58:52 EDT
20 //####//------------------------------------------------------------
21 //####//------------------------------------------------------------
22 
23 #ifndef ctvol_noeudH
24 #define ctvol_noeudH
25 
26 
27 
29 {
30 public:
31 
32  CTVOL_NOEUD(class MG_NOEUD* noeud);
33  ~CTVOL_NOEUD();
34 
35  class MG_NOEUD* get_noeud(void);
36 
37  double get_densite(void);
38  void change_densite(double dens);
39 
40  long get_id();
41  void incremente_nb_segment(int nb=1);
42  int get_nb_segment(void);
43 
44 
45 
46 private:
47  class MG_NOEUD* mgnoeud;
48  double densite;
50 
51 };
52 
53 
54 
55 #endif
CTVOL_NOEUD::nb_segment_connecte
int nb_segment_connecte
Definition: ctvol_noeud.h:49
CTVOL_NOEUD::get_nb_segment
int get_nb_segment(void)
Definition: ctvol_noeud.cpp:69
CTVOL_NOEUD::incremente_nb_segment
void incremente_nb_segment(int nb=1)
Definition: ctvol_noeud.cpp:64
CTVOL_NOEUD::~CTVOL_NOEUD
~CTVOL_NOEUD()
Definition: ctvol_noeud.cpp:39
CTVOL_NOEUD::change_densite
void change_densite(double dens)
Definition: ctvol_noeud.cpp:53
CTVOL_NOEUD::densite
double densite
Definition: ctvol_noeud.h:48
MG_NOEUD
Definition: mg_noeud.h:41
CTVOL_NOEUD::CTVOL_NOEUD
CTVOL_NOEUD(class MG_NOEUD *noeud)
Definition: ctvol_noeud.cpp:35
CTVOL_NOEUD::mgnoeud
class MG_NOEUD * mgnoeud
Definition: ctvol_noeud.h:47
CTVOL_NOEUD::get_noeud
class MG_NOEUD * get_noeud(void)
Definition: ctvol_noeud.cpp:43
CTVOL_NOEUD
Definition: ctvol_noeud.h:28
CTVOL_NOEUD::get_id
long get_id()
Definition: ctvol_noeud.cpp:58
CTVOL_NOEUD::get_densite
double get_densite(void)
Definition: ctvol_noeud.cpp:48